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
- Method
- 코딩테스트
- Number Theory
- 구현
- Stack
- Matrix
- sorting
- 파이썬
- 코테
- string
- dynamic programming
- Counting
- Data Structure
- hash table
- Class
- Binary Tree
- array
- implement
- bit manipulation
- Tree
- SQL
- two pointers
- geometry
- java
- Binary Search
- database
- simulation
- 자바
- Math
- greedy
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2529. Maximum Count of Positive Integer and Negative Integer 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 2529. Maximum Count of Positive Integer and Negative Integer
무지맘 2023. 3. 16. 15:451. Input
1) int[] nums
- nums는 오름차순으로 정렬되어 있다.
2. Output
1) nums에서 양수의 개수와 음수의 개수를 구한 다음, 더 큰 수를 반환
3. Constraint
1) 0은 양수도 음수도 아니다.
2) 1 <= nums.length <= 2000
3) -2000 <= nums[i] <= 2000
4. Example
Input: nums = [-2,-1,-1,1,2,3] -> Output: 3
설명: 양수가 3개, 음수가 3개이므로 3을 반환한다.
5. Code
1) 첫 코드(2023/03/16)
int pos = 0, neg = 0;
for(int i : nums){
if(i<0) neg++;
else break;
}
for(int i=nums.length-1 ; i>=0 ; i--){
if(nums[i]>0) pos++;
else break;
}
return Math.max(pos,neg);
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 2444. 별 찍기 - 7 (0) | 2023.03.17 |
---|---|
[백준 온라인 저지] 27866. 문자와 문자열 (0) | 2023.03.17 |
[LeetCode/Easy] 682. Baseball Game (0) | 2023.03.16 |
[LeetCode/Easy] 2535. Difference Between Element Sum and Digit Sum of an Array (0) | 2023.03.13 |
[LeetCode/Medium] 677. Map Sum Pairs (0) | 2023.03.13 |