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
- dynamic programming
- sorting
- string
- Binary Search
- database
- two pointers
- SQL
- Matrix
- Data Structure
- 코딩테스트
- hash table
- Tree
- java
- bit manipulation
- 구현
- Stack
- greedy
- Method
- Counting
- 파이썬
- Number Theory
- geometry
- Binary Tree
- Class
- 자바
- implement
- simulation
- Math
- array
- 코테
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 717. 1-bit and 2-bit Characters 본문
1. Input
1) int[] bits
2. Output
1) 다음 규칙에 따라 숫자를 셌을 때, 마지막 수가 1비트짜리 숫자면 true를 반환
- 1비트짜리 숫자는 0뿐이다.
- 2비트짜리 숫자는 11 또는 10이다.
- bits는 0으로 끝난다.
3. Constraint
1) 1 <= bits.length <= 1000
2) bits[i]는 0 또는 1이다.
4. Example
Input: bits = [1,0,0] -> Output: true
Input: bits = [1,1,1,0] -> Output: false
설명:
- 10, 0으로 나눌 수 있다. 마지막 수가 1비트짜리 숫자이므로 true를 반환한다.
- 11, 10으로 나눌 수 있다. 마지막 수가 2비트짜리 숫자이므로 false를 반환한다.
5. Code
1) 첫 코드(2023/03/19)
boolean answer = true;
if(bits.length==1 && bits[0]!=0)
answer = false;
else{
for(int i=0 ; i<bits.length ; i++){
if(bits[i]==1){
i++;
if(i==bits.length-1)
answer = false;
}
}
}
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2595. Number of Even and Odd Bits (0) | 2023.03.19 |
---|---|
[LeetCode/Medium] 2596. Check Knight Tour Configuration (0) | 2023.03.19 |
[LeetCode/Easy] 2525. Categorize Box According to Criteria (0) | 2023.03.18 |
[LeetCode/Easy] 705. Design HashSet (0) | 2023.03.18 |
[LeetCode/Easy] 704. Binary Search (0) | 2023.03.18 |