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
- 파이썬
- greedy
- Stack
- 구현
- java
- Binary Search
- 자바
- Binary Tree
- array
- geometry
- implement
- Class
- bit manipulation
- Matrix
- database
- two pointers
- Number Theory
- SQL
- Counting
- Method
- sorting
- Data Structure
- simulation
- string
- 코딩테스트
- Tree
- hash table
- dynamic programming
- Math
- 코테
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 868. Binary Gap 본문
1. Input
1) 양의 정수 n
2. Output
1) n을 2진수로 표현했을 때의 binary gap 중에서 가장 긴 것을 반환
- binary gap이란 두 1 사이의 거리를 말한다. 이때 두 1 사이에 다른 1이 있으면 안된다.
3. Constraint
1) 1 <= n <= 10^9
4. Example
Input: n = 22 -> Output: 2
설명: 22는 2진수로 10110이다.
- ‘1’0‘1’10은 거리가 2이다.
- 10‘1’‘1’0은 거리가 1이다.
- ‘1’01‘1’0은 두 1 사이에 1이 있으므로 계산하지 않는다.
- 따라서 가장 긴 거리인 2를 반환한다.
5. Code
1) 첫 코드(2022/12/30)
String s = Integer.toBinaryString(n);
int start=0, answer=0;
for(int i=1 ; i<s.length() ; i++){
if(s.charAt(i)=='1'){
if(i-start>answer) answer = i-start;
start = i;
}
}
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1672. Richest Customer Wealth (0) | 2023.01.02 |
---|---|
[LeetCode/Easy] 884. Uncommon Words from Two Sentences (0) | 2022.12.30 |
[LeetCode/Easy] 844. Backspace String Compare (0) | 2022.12.29 |
[LeetCode/Easy] 1662. Check If Two String Arrays are Equivalent (0) | 2022.12.29 |
[LeetCode/Easy] 1624. Largest Substring Between Two Equal Characters (0) | 2022.12.29 |