Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 코딩테스트
- 코테
- sorting
- java
- Binary Tree
- Stack
- Tree
- array
- bit manipulation
- implement
- SQL
- 파이썬
- dynamic programming
- Class
- Number Theory
- Counting
- simulation
- hash table
- string
- geometry
- Matrix
- database
- two pointers
- 구현
- Method
- Binary Search
- Data Structure
- Math
- greedy
- 자바
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1941. Check if All Characters Have Equal Number of Occurrences 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 1941. Check if All Characters Have Equal Number of Occurrences
무지맘 2023. 1. 8. 19:351. Input
1) 문자열 s
2. Output
1) s가 good string이라면 true를, 아니면 false를 반환
- good string이란 문자열에 있는 모든 문자들이 동일한 개수인 문자열을 말한다.
3. Constraint
1) 1 <= s.length <= 1000
2) s는 영어 소문자로만 이루어져 있다.
4. Example
Input: s = "abacbc" -> Output: true
Input: s = "aaabb" -> Output: false
5. Code
1) 첫 코드(2022/06/15)
int[] count = new int[26];
for(int i=0 ; i<s.length() ; i++)
count[s.charAt(i)-97]++;
int val = 0, index = 0;
for(int i=0 ; i<26 ; i++)
if(count[i]!=0){
index = i;
val = count[i];
break;
}
for(int i=index+1 ; i<26 ; i++)
if(count[i]!=0 && count[i]!=val) return false;
return true;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1961. Check If String Is a Prefix of Array (0) | 2023.01.08 |
---|---|
[LeetCode/Easy] 1952. Three Divisors (0) | 2023.01.08 |
[LeetCode/Easy] 1935. Maximum Number of Words You Can Type (0) | 2023.01.08 |
[LeetCode/Easy] 1929. Concatenation of Array (0) | 2023.01.08 |
[LeetCode/Easy] 1920. Build Array from Permutation (0) | 2023.01.07 |