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
- Binary Search
- Counting
- database
- Binary Tree
- Math
- geometry
- Class
- implement
- java
- dynamic programming
- Matrix
- SQL
- Stack
- string
- two pointers
- Method
- 구현
- hash table
- 자바
- 코테
- array
- bit manipulation
- greedy
- Data Structure
- sorting
- Tree
- simulation
- 파이썬
- Number Theory
- 코딩테스트
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2643. Row With Maximum Ones 본문
1. Input
1) int[][] mat
2. Output
1) mat의 각 행별로 1의 개수를 세어서 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 = [[0,1],[1,0]] -> Output: [0,1]
설명: 0행과 1행 모두 1을 1개씩 갖고 있지만, 행번호는 0이 작으므로 [0,1]을 반환한다.
5. Code
1) 첫 코드(2023/05/08)
class Solution {
public int[] rowAndMaximumOnes(int[][] mat) {
int[] answer = new int[2];
int max = -1;
for(int i=0 ; i<mat.length ; i++){
int sum = 0;
for(int j=0 ; j<mat[i].length ; j++)
sum += mat[i][j];
if(sum>max){
answer[0] = i;
answer[1] = sum;
max = sum;
}
}
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2651. Calculate Delayed Arrival Time (0) | 2023.05.08 |
---|---|
[LeetCode/Easy] 2644. Find the Maximum Divisibility Score (0) | 2023.05.08 |
[LeetCode/Easy] 2639. Find the Width of Columns of a Grid (0) | 2023.05.08 |
[LeetCode/Easy] 2614. Prime In Diagonal (0) | 2023.05.08 |
[LeetCode/Easy] 2605. Form Smallest Number From Two Digit Arrays (0) | 2023.05.06 |