Skip to content

Commit 2d54b27

Browse files
authored
Create 1822-sign-of-the-product-of-an-array.kt
1 parent 0440020 commit 2d54b27

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class Solution {
2+
fun arraySign(nums: IntArray): Int {
3+
var res = 1
4+
for (n in nums){
5+
if (n == 0)
6+
return 0
7+
if (n < 0)
8+
res *= -1
9+
}
10+
return if (res > 0) 1 else -1
11+
}
12+
}

0 commit comments

Comments
 (0)