aboutsummaryrefslogtreecommitdiff
path: root/challenge-235/robert-dicicco/python/ch-1.py
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-235/robert-dicicco/python/ch-1.py')
-rw-r--r--challenge-235/robert-dicicco/python/ch-1.py59
1 files changed, 59 insertions, 0 deletions
diff --git a/challenge-235/robert-dicicco/python/ch-1.py b/challenge-235/robert-dicicco/python/ch-1.py
new file mode 100644
index 0000000000..1da5a82a29
--- /dev/null
+++ b/challenge-235/robert-dicicco/python/ch-1.py
@@ -0,0 +1,59 @@
+#!/usr/bin/env python
+'''
+---------------------------------------
+AUTHOR: Robert DiCicco
+DATE : 2023-09-18
+Challenge 235 Task 1 Remove One ( Python )
+---------------------------------------
+'''
+
+myints = [[0, 2, 9, 4, 6],[5, 1, 3, 2],[2, 2, 3]]
+
+for mints in myints:
+ print(f"Input: @ints = {mints}")
+ ln = len(mints)
+ cnt = 0
+ x = 1
+ while x < ln:
+ if mints[x] > mints[x-1]:
+ print(f"\t{mints[x]} greater than {mints[x-1]}")
+ x += 1
+ elif mints[x] == mints[x-1]:
+ print(f"\t{mints[x]} equal to {mints[x-1]}")
+ x += 1
+ cnt += 1
+ else :
+ print(f"\t{mints[x]} less than {mints[x-1]}")
+ x += 1
+ cnt += 1
+ if cnt == 1:
+ print("Output: true\n")
+ else:
+ print("Output: false\n")
+
+'''
+---------------------------------------
+SAMPLE OUTPUT
+python .\RemoveOne.py
+
+Input: @ints = [0, 2, 9, 4, 6]
+ 2 greater than 0
+ 9 greater than 2
+ 4 less than 9
+ 6 greater than 4
+Output: true
+
+Input: @ints = [5, 1, 3, 2]
+ 1 less than 5
+ 3 greater than 1
+ 2 less than 3
+Output: false
+
+Input: @ints = [2, 2, 3]
+ 2 equal to 2
+ 3 greater than 2
+Output: true
+---------------------------------------
+'''
+
+