aboutsummaryrefslogtreecommitdiff
path: root/challenge-226/eric-cheung/python/ch-2.py
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-226/eric-cheung/python/ch-2.py')
-rwxr-xr-xchallenge-226/eric-cheung/python/ch-2.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/challenge-226/eric-cheung/python/ch-2.py b/challenge-226/eric-cheung/python/ch-2.py
new file mode 100755
index 0000000000..2550e435d0
--- /dev/null
+++ b/challenge-226/eric-cheung/python/ch-2.py
@@ -0,0 +1,15 @@
+
+import numpy as np
+
+## arrInput = np.array([1, 5, 0, 3, 5]) ## Example 1
+## arrInput = np.array([0]) ## Example 2
+arrInput = np.array([2, 1, 4, 0, 3]) ## Example 3
+
+nCount = 0
+
+while np.count_nonzero(arrInput) > 0:
+ nSubstract = min([nLoop for nLoop in arrInput if nLoop > 0])
+ arrInput = [nLoop - nSubstract if nLoop > 0 else 0 for nLoop in arrInput]
+ nCount = nCount + 1
+
+print (nCount)