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
- SQL
- Class
- Method
- java
- Matrix
- 코딩테스트
- bit manipulation
- 코테
- database
- geometry
- simulation
- Data Structure
- greedy
- hash table
- Stack
- Math
- implement
- Counting
- Binary Tree
- 구현
- sorting
- Binary Search
- dynamic programming
- Tree
- Number Theory
- 파이썬
- 자바
- array
- two pointers
- string
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 693. Binary Number with Alternating Bits 본문
1. Input
1) 양의 정수 n
2. Output
1) n을 2진수로 변환했을 때 0과 1이 번갈아가며 나오면 true, 아니면 false를 반환
3. Constraint
1) 1 <= n <= 2^31 - 1
4. Example
Input: n=5 -> Output: true
Input: n=7 -> Output: false
설명:
- 5 = 101(2)이므로 true를 반환한다.
- 7 = 111(2)이므로 false를 반환한다.
5. Code
1) 첫 코드(2022/07/06)
String s = Integer.toBinaryString(n);
for(int i=0 ; i<s.length()-1 ; i++)
if(s.charAt(i)==s.charAt(i+1))
return false;
return true;
2) 다시 풀어본 코드(2022/12/05)
int prev = n%2;
n /= 2;
boolean answer = true;
while(n>0){
if(n%2!=prev){
prev = n%2;
n /= 2;
} else{
answer = false;
break;
}
}
return answer;
- 1번에 비해 빠르고 공간 절약도 많이 했다.
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 724. Find Pivot Index (0) | 2022.12.06 |
---|---|
[LeetCode/Easy] 709. To Lower Case (0) | 2022.12.05 |
[LeetCode/Easy] 657. Robot Return to Origin (0) | 2022.12.04 |
[LeetCode/Easy] 598. Range Addition II (0) | 2022.12.04 |
[LeetCode/Easy] 566. Reshape the Matrix (0) | 2022.12.04 |