8000
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 08fd928 commit 0487565Copy full SHA for 0487565
Chapter_01/P02_FirstNonRepeatedCharacter/src/modern/challenge/Strings.java
@@ -83,6 +83,7 @@ public static char firstNonRepeatedCharacterV3(String str) {
83
84
Map<Character, Integer> chars = new LinkedHashMap<>();
85
86
+ // or use for(char ch: str.toCharArray()) { ... }
87
for (int i = 0; i < str.length(); i++) {
88
char ch = str.charAt(i);
89
0 commit comments