Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 45a8ce1

Browse files
authored
Update PalindromePartitioning.java
1 parent 010773a commit 45a8ce1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎Backtracking/PalindromePartitioning.java‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public void helper(String s, int index, List<String> l, List<List<String>> res){
2828

2929
helper(s, i+1, l, res);
3030

31-
//backtarck - undo the partition
31+
//backtrack - undo the partition
3232
l.remove(l.size()-1);
3333
}
3434
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /