Skip to content

Commit 885a617

Browse files
committed
fix: my build failed
1 parent 4bb2ad7 commit 885a617

File tree

1 file changed

+2
-1
lines changed
  • lesson_13/maps_java/maps_app/src/main/java/com/codedifferently/lesson13

1 file changed

+2
-1
lines changed

lesson_13/maps_java/maps_app/src/main/java/com/codedifferently/lesson13/Lesson13.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public class Lesson13 {
77
* https://leetcode.com/problems/permutation-difference-between-two-strings
88
*/
99
public int findPermutationDifference(String s, String t) {
10-
10+
1111
int sumDifference = 0;
1212
for (int i = 0; i < s.length(); i++) {
1313
char currentChar = s.charAt(i);
@@ -19,3 +19,4 @@ public int findPermutationDifference(String s, String t) {
1919
return sumDifference;
2020
}
2121
}
22+

0 commit comments

Comments
 (0)