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
- Data Structure
- sorting
- database
- Counting
- 구현
- two pointers
- Matrix
- Binary Search
- dynamic programming
- java
- Method
- Class
- 코테
- Tree
- geometry
- Binary Tree
- SQL
- implement
- hash table
- simulation
- Number Theory
- bit manipulation
- greedy
- 파이썬
- Stack
- 코딩테스트
- string
- array
- Math
- 자바
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 944. Delete Columns to Make Sorted 본문
1. Input
1) 길이가 모두 같은 문자열을 담고 있는 배열 strs
2. Output
1) strs의 모든 문자열을 쭉 나열해놨을 때, 사전순으로 되어 있지 않은 column의 수
3. Constraint
1) 1 <= strs.length <= 100
2) 1 <= strs[i].length <= 1000
3) strs[i]는 영어 소문자로만 이루어져 있다.
4. Example
Input: strs = ["cba","daf","ghi"] -> Output: 1
Explanation: strs의 문자열을 나열해놓고 비교해본다.
cba
daf
ghi
1번(두 번째) column만 b->a->h로 사전순으로 배열되어 있지 않기 때문에 1을 반환한다.
5. Code
1) 첫 코드(2022/06/29)
int count = 0;
for(int i=0 ; i<strs[0].length() ; i++){
for(int j=0 ; j<strs.length-1 ; j++){
if(strs[j].charAt(i) > strs[j+1].charAt(i)){
count++; break;
}
} // for j
} // for i
return count;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 961. N-Repeated Element in Size 2N Array (0) | 2022.12.16 |
---|---|
[LeetCode/Easy] 283. Move Zeroes (0) | 2022.12.10 |
[LeetCode/Easy] 929. Unique Email Addresses (0) | 2022.12.10 |
[LeetCode/Easy] 922. Sort Array By Parity II (0) | 2022.12.10 |
[LeetCode/Easy] 905. Sort Array By Parity (0) | 2022.12.10 |