Skip to content

Commit 135730d

Browse files
fix(recursion): resolve duplicate class issue for AllOccurrences
1 parent 17c3b2d commit 135730d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

14-recursion/solutions/StringLength.java renamed to 14-recursion/solutions/StringLengthSolution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Remove one character each time and count.
77
*/
88

9-
public class StringLength {
9+
public class StringLengthSolution {
1010

1111
public static int length(String str) {
1212
if (str.length() == 0) {

0 commit comments

Comments
 (0)