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
- Matrix
- geometry
- simulation
- 코딩테스트
- 파이썬
- sorting
- 구현
- Counting
- two pointers
- array
- greedy
- bit manipulation
- SQL
- Class
- Method
- 코테
- 자바
- Number Theory
- dynamic programming
- implement
- string
- database
- Binary Search
- java
- Binary Tree
- Data Structure
- Math
- Tree
- hash table
- Stack
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Medium] 240. Search a 2D Matrix II 본문
1. Input
1) int[][] matrix
- m == matrix.length
- n == matrix[i].length
2) int target
2. Output
1) matrix에서 target을 찾으면 true, 못 찾으면 false를 반환
3. Constraint
1) 1 <= n, m <= 300
2) - 10^9 <= matrix[i][j] <= 10^9
3) 각 행의 숫자들은 오름차순으로 정렬되어 있다.
4) 각 열의 숫자들은 오름차순으로 정렬되어 있다.
5) - 10^9 <= target <= 10^9
4. Example
Input: matrix = [[1,4,7,11,15],[2,5,8,12,19],[3,6,9,16,22],[10,13,14,17,24],[18,21,23,26,30]], target = 5 -> Output: true
5. Code
1) 첫 코드(2023/01/24)
boolean answer = false;
for(int i=0 ; i<matrix.length ; i++){
if(matrix[i][0]<=target){
for(int j=0 ; j<matrix[i].length ; j++){
if(matrix[i][j]==target){
answer = true; break;
} else if(matrix[i][j]>target)
break;
}
} else if(matrix[i][0]>target)
break;
}
return answer;
- 그닥 좋은 코드는 아니다..
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 290. Word Pattern (0) | 2023.01.27 |
---|---|
[LeetCode/Medium] 284. Peeking Iterator (0) | 2023.01.26 |
[LeetCode/Medium] 229. Majority Element II (0) | 2023.01.23 |
[LeetCode/Hard] 220. Contains Duplicate III (0) | 2023.01.23 |
[LeetCode/Easy] 219. Contains Duplicate II (0) | 2023.01.23 |