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
- two pointers
- SQL
- Matrix
- 코딩테스트
- dynamic programming
- Tree
- Binary Tree
- array
- geometry
- implement
- Number Theory
- database
- Method
- java
- Math
- 코테
- 구현
- hash table
- Stack
- greedy
- string
- simulation
- Data Structure
- Class
- bit manipulation
- sorting
- Counting
- Binary Search
- 파이썬
- 자바
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 485. Max Consecutive Ones 본문
1. Input
1) int[] nums
2. Output
1) nums에서 연속된 1의 개수를 세어 가장 많은 것을 반환
3. Constraint
1) 1 <= nums.length <= 10^5
2) nums[i]는 1 또는 0이다.
4. Example
Input: nums = [1,1,0,1,1,1] -> Output: 3
Input: nums = [1,0,1,1,0,1] -> Output: 2
5. Code
1) 첫 코드(2023/05/19)
class Solution {
public int findMaxConsecutiveOnes(int[] nums) {
int max = 0;
for(int i=0 ; i<nums.length ; i++){
if(nums[i]==1){
int count = 1;
for(int j=i+1 ; j<nums.length ; j++){
if(nums[j]==1) count++;
else { i = j; break;}
}
if(count>max) max = count;
}
}
return max;
}
}
2) 좀더 간결하게 만들어본 코드(2023/05/19)
class Solution {
public int findMaxConsecutiveOnes(int[] nums) {
int max = 0, i = 0, count = 0;
while(i<nums.length){
while(i<nums.length && nums[i]==1){
count++; i++;
}
if(count>max)
max = count;
else if(count==0)
i++;
count = 0;
}
return max;
}
}
- 1번보다 훨씬 빠른데, 메모리를 조금 더 쓴다.
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 506. Relative Ranks (0) | 2023.05.23 |
---|---|
[백준 온라인 저지] 2752. 세수정렬 (0) | 2023.05.20 |
[LeetCode/Easy] 482. License Key Formatting (0) | 2023.05.19 |
[LeetCode/Easy] 459. Repeated Substring Pattern (0) | 2023.05.19 |
[LeetCode/Easy] 415. Add Strings (0) | 2023.05.19 |