We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 010773a commit 45a8ce1Copy full SHA for 45a8ce1
Backtracking/PalindromePartitioning.java
@@ -28,7 +28,7 @@ public void helper(String s, int index, List<String> l, List<List<String>> res){
28
29
helper(s, i+1, l, res);
30
31
- //backtarck - undo the partition
+ //backtrack - undo the partition
32
l.remove(l.size()-1);
33
}
34
0 commit comments