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
- Stack
- Method
- 구현
- database
- greedy
- Math
- geometry
- sorting
- 코테
- two pointers
- Class
- Data Structure
- bit manipulation
- Matrix
- dynamic programming
- array
- Number Theory
- implement
- Tree
- Binary Search
- 코딩테스트
- SQL
- simulation
- Counting
- 자바
- hash table
- Binary Tree
- 파이썬
- string
- java
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 이차원 배열 대각선 순회하기 본문
1. Input, Output, Example
- i + j <= k를 만족하는 모든 (i, j)에 대한 board[i][j]의 합을 반환
2. Constraint
1) 1 ≤ board의 길이 ≤ 100
2) 1 ≤ board[i]의 길이 ≤ 100
3) 1 ≤ board[i][j] ≤ 10,000
4) 모든 board[i]의 길이는 같다.
5) 0 ≤ k < board의 길이 + board[i]의 길이
3. Code
1) 첫 코드(2023/05/01)
class Solution {
public int solution(int[][] board, int k) {
int answer = 0;
for(int i=0 ; i<board.length ; i++)
for(int j=0 ; j<Math.min(board[i].length,k-i+1); j++)
answer += board[i][j];
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2357. Make Array Zero by Subtracting Equal Amounts (0) | 2023.05.02 |
---|---|
[LeetCode/Easy] 2325. Decode the Message (0) | 2023.05.02 |
[프로그래머스/Lv.0] 정사각형으로 만들기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 조건에 맞게 수열 변환하기 2 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 2의 영역 (0) | 2023.05.01 |