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
- 자바
- array
- hash table
- 코테
- 구현
- SQL
- string
- geometry
- greedy
- sorting
- Data Structure
- Method
- simulation
- Tree
- Stack
- Binary Search
- Math
- bit manipulation
- 코딩테스트
- Class
- java
- dynamic programming
- database
- two pointers
- Number Theory
- implement
- 파이썬
- Binary Tree
- Matrix
- Counting
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1582. Special Positions in a Binary Matrix 본문
1. Input
1) int[][] mat
2. Output
1) 각 행과 열에 혼자만 1인 1의 개수를 반환
3. Constraint
1) m == mat.length
2) n == mat[i].length
3) 1 <= m, n <= 100
4) mat[i][j]는 0 또는 1이다.
4. Example
Input: mat = [[1,0,0],[0,0,1],[1,0,0]] -> Output: 1
설명: (1,2)에 있는 1만 자기가 속한 행과 열에서 혼자 1이다.
5. Code
1) 첫 코드(2023/04/13)
int answer = 0;
for(int i=0 ; i<mat.length ; i++){
for(int j=0 ; j<mat[i].length ; j++){
if(mat[i][j]==1){
boolean find1 = false;
for(int a=0 ; a<mat[i].length ; a++)
if(mat[i][a]==1 && a!=j){
find1 = true; break;
}
if(!find1){
for(int a=0 ; a<mat.length ; a++)
if(mat[a][j]==1 && a!=i){
find1 = true; break;
}
}
if(!find1) answer++;
}
}
}
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1598. Crawler Log Folder (0) | 2023.04.13 |
---|---|
[LeetCode/Easy] 1592. Rearrange Spaces Between Words (0) | 2023.04.13 |
[LeetCode/Easy] 1576. Replace All ?'s to Avoid Consecutive Repeating Characters (0) | 2023.04.13 |
[LeetCode/Easy] 1560. Most Visited Sector in a Circular Track (0) | 2023.04.13 |
[LeetCode/Easy] 1556. Thousand Separator (0) | 2023.04.12 |