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
- bit manipulation
- Matrix
- 코딩테스트
- Method
- two pointers
- Data Structure
- java
- Class
- Counting
- SQL
- hash table
- simulation
- Binary Search
- dynamic programming
- implement
- sorting
- database
- array
- string
- greedy
- 파이썬
- 구현
- Binary Tree
- Tree
- 자바
- 코테
- Number Theory
- Math
- geometry
- Stack
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 가까운 1 찾기 본문
1. Input, Output, Example
- idx가 주어졌을 때, idx 이상이면서 배열의 값이 1인 가장 작은 인덱스를 반환
2. Constraint
1) 3 ≤ arr의 길이 ≤ 100'000
2) arr의 원소는 전부 1 또는 0
3. Code
1) 첫 코드(2023/05/01)
class Solution {
public int solution(int[] arr, int idx) {
int answer = -1;
for(int i=idx ; i<arr.length ; i++)
if(arr[i]==1){
answer = i; break;
}
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 등차수열의 특정한 항만 더하기 (0) | 2023.05.01 |
---|---|
[프로그래머스/Lv.0] 0 떼기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 순서 바꾸기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 주사위 게임 2 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 수 조작하기 2 (0) | 2023.05.01 |