Skip to content

Commit 9a7f501

Browse files
fix: lesson_13
1 parent 40355ed commit 9a7f501

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55

66
public class Lesson13 {
77

8-
98
public int findPermutationDifference(String s, String t) {
10-
9+
1110
Map<Character, Integer> sIndexMap = new HashMap<>();
1211
for (int i = 0; i < s.length(); i++) {
1312
sIndexMap.put(s.charAt(i), i);

package-lock.json

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)