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
- simulation
- two pointers
- Class
- database
- greedy
- Stack
- Binary Tree
- Data Structure
- java
- implement
- Number Theory
- Binary Search
- 자바
- dynamic programming
- Matrix
- Method
- bit manipulation
- 파이썬
- SQL
- array
- 코딩테스트
- Counting
- hash table
- sorting
- geometry
- Tree
- Math
- string
- 코테
- 구현
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1784. Check if Binary String Has at Most One Segment of Ones 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 1784. Check if Binary String Has at Most One Segment of Ones
무지맘 2023. 6. 20. 22:481. Input
1) String s
2. Output
1) s에 1이 연속되어 나타나는 부분을 셌을 때, 1개면 true, 아니면 false를 반환
3. Constraint
1) 1 <= s.length <= 100
2) s는 0 또는 1로 이루어져 있다.
3) s는 1로 시작하는 문자열이다.
4. Example
Input: s = "1001" -> Output: false
Input: s = "110" -> Output: true
설명:
- 1이 나타나는 부분이 “1”, “1”의 2개이다.
- 1이 나타나는 부분이 “11”의 1개이다.
5. Code
1) 첫 코드(2023/06/20)
class Solution {
public boolean checkOnesSegment(String s) {
int count = 0; // number of segment of 1s
for(int i=0 ; i<s.length() ; i++){
if(s.charAt(i)=='1'){
int j = i+1;
while(j<s.length() && s.charAt(j)=='1') j++;
count++;
i = j-1;
}
}
return count==1;
}
}
- 100%, 90%
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1893. Check if All the Integers in a Range Are Covered (0) | 2023.06.20 |
---|---|
[LeetCode/Easy] 1869. Longer Contiguous Segments of Ones than Zeros (0) | 2023.06.20 |
[LeetCode/Easy] 1779. Find Nearest Point That Has the Same X or Y Coordinate (0) | 2023.06.20 |
[백준 온라인 저지] 1948. 임계경로 (0) | 2023.06.20 |
[백준 온라인 저지] 1516. 게임 개발 (0) | 2023.06.19 |