387. First Unique Character in a String
public int firstUniqChar(String s) {
Set<Character> str = new HashSet<Character>();
int i = 0;
while (!str.contains(s.charAt(i))) {
str.add(s.charAt(i));
i++;
}
return i;
}
public int firstUniqChar(String s) {
Map<Character, Integer> str = new HashMap<Character, Integer>();
int i = 0;
while (!str.containsKey(s.charAt(i))) {
str.put(s.charAt(i), i);
i++;
}
return str.get(s.charAt(i));
}
public int firstUniqChar(String s) {
Map<Character, Integer> str = new HashMap<Character, Integer>();
for (int i = 0; i < s.length(); i++) {
if (str.containsKey(s.charAt(i))) {
str.replace(s.charAt(i), 2);
} else {
str.put(s.charAt(i), 1);
}
}
for (int j = 0; j < s.length(); j++) {
if (str.get(s.charAt(j)) == 1) {
return j;
}
}
return -1;
}
Author And Source
이 문제에 관하여(387. First Unique Character in a String), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jwade/387.-First-Unique-Character-in-a-String저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)