diff options
Diffstat (limited to 'challenge-267/eric-cheung/python/ch-1.py')
| -rwxr-xr-x | challenge-267/eric-cheung/python/ch-1.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/challenge-267/eric-cheung/python/ch-1.py b/challenge-267/eric-cheung/python/ch-1.py new file mode 100755 index 0000000000..c3f56490de --- /dev/null +++ b/challenge-267/eric-cheung/python/ch-1.py @@ -0,0 +1,8 @@ +
+## arrInt = [-1, -2, -3, -4, 3, 2, 1] ## Example 1
+## arrInt = [1, 2, 0, -2, -1] ## Example 2
+arrInt = [-1, -1, 1, -1, 2] ## Example 3
+
+arrNegCount = [nLoop for nLoop in arrInt if nLoop < 0]
+
+print (0 if 0 in arrInt else 1 if len(arrNegCount) % 2 == 0 else -1)
|
