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
- 구현
- Data Structure
- greedy
- java
- 자바
- Binary Search
- SQL
- database
- Stack
- dynamic programming
- implement
- array
- Matrix
- 파이썬
- sorting
- Number Theory
- hash table
- 코딩테스트
- Binary Tree
- geometry
- bit manipulation
- string
- Counting
- Class
- Math
- Method
- two pointers
- 코테
- simulation
- Tree
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1822. Sign of the Product of an Array 본문
1. Input
1) 정수 배열 nums
2. Output
1) nums의 모든 요소를 곱한 값의 sign funcion의 값
// signFunction(x)
- x>0 -> 함수 값은 1
- x=0 -> 함수 값은 0
- x<0 -> 함수 값은 -1
3. Constraint
1) 1 <= nums.length <= 1000
2) -100 <= nums[i] <= 100
4. Example
Input: nums = [-1,1,-1,1,-1] -> Output: -1
Input: nums = [-1,-2,-3,-4,3,2,1] -> Output: 1
5. Code
1) 첫 코드(2022/06/24)
int numOfneg = 0;
for(int i=0 ; i<nums.length ; i++){
if(nums[i]<0) numOfneg++;
else if(nums[i]==0) return 0;
}
return numOfneg%2==0 ? 1 : -1;
- 숫자를 계속 곱해나가면 int, long의 범위를 넘어가게돼 잘못된 결과가 반환된다. 때문에 단순 곱셈 계산으로 문제를 풀려고 하면 안된다.
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1832. Check if the Sentence Is Pangram (0) | 2023.01.05 |
---|---|
[LeetCode/Easy] 1827. Minimum Operations to Make the Array Increasing (0) | 2023.01.05 |
[LeetCode/Easy] 20. Valid Parentheses (0) | 2023.01.05 |
[LeetCode/Easy] 1816. Truncate Sentence (0) | 2023.01.04 |
[LeetCode/Easy] 1812. Determine Color of a Chessboard Square (0) | 2023.01.04 |