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
- database
- Binary Search
- Stack
- sorting
- Method
- two pointers
- implement
- dynamic programming
- 파이썬
- 코딩테스트
- geometry
- Tree
- Class
- Number Theory
- string
- greedy
- Binary Tree
- Math
- 자바
- 구현
- bit manipulation
- java
- array
- 코테
- Counting
- hash table
- simulation
- Data Structure
- SQL
- Matrix
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2133. Check if Every Row and Column Contains All Numbers 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 2133. Check if Every Row and Column Contains All Numbers
무지맘 2023. 4. 27. 19:011. Input
1) int[][] matrix
2. Output
1) matrix의 모든 행과 열에 1부터 n까지의 숫자가 모두 들어가있다면 true, 아니면 false를 반환
3. Constraint
1) n == matrix.length == matrix[i].length
2) 1 <= n <= 100
3) 1 <= matrix[i][j] <= n
4. Example
Input: matrix = [[1,2,3],[3,1,2],[2,3,1]] -> Output: true
Input: matrix = [[1,1,1],[1,2,3],[1,2,3]] -> Output: false
설명:
- 모든 행과 열에 1부터 3까지의 숫자가 들어있다.
- 1행과 1열에 2와 3이 없다.
5. Code
1) 첫 코드(2023/04/27)
class Solution {
public boolean checkValid(int[][] matrix) {
int n = matrix.length;
boolean answer = true;
for(int i=0 ; i<n ; i++){
HashSet<Integer> row = new HashSet<>();
HashSet<Integer> col = new HashSet<>();
for(int j=0 ; j<n ; j++){
row.add(matrix[i][j]);
col.add(matrix[j][i]);
}
if(row.size()!=n || col.size()!=n){
answer = false; break;
}
}
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2200. Find All K-Distant Indices in an Array (0) | 2023.04.27 |
---|---|
[LeetCode/Easy] 2190. Most Frequent Number Following Key In an Array (0) | 2023.04.27 |
[프로그래머스/Lv.0] 무작위로 K개의 수 뽑기 (0) | 2023.04.27 |
[프로그래머스/Lv.0] 배열 만들기 4 (0) | 2023.04.27 |
[프로그래머스/Lv.0] qr code (0) | 2023.04.27 |