diff options
Diffstat (limited to 'challenge-320/eric-cheung/python/ch-1.py')
| -rwxr-xr-x | challenge-320/eric-cheung/python/ch-1.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/challenge-320/eric-cheung/python/ch-1.py b/challenge-320/eric-cheung/python/ch-1.py new file mode 100755 index 0000000000..57f640454f --- /dev/null +++ b/challenge-320/eric-cheung/python/ch-1.py @@ -0,0 +1,9 @@ +
+## arrInts = [-3, -2, -1, 1, 2, 3] ## Example 1
+## arrInts = [-2, -1, 0, 0, 1] ## Example 2
+arrInts = [1, 2, 3, 4] ## Example 3
+
+nPosCount = len([nLoop for nLoop in arrInts if nLoop > 0])
+nNegCount = len([nLoop for nLoop in arrInts if nLoop < 0])
+
+print (max(nPosCount, nNegCount))
|
