summaryrefslogtreecommitdiff
path: root/comp/work/31/menu.py
diff options
context:
space:
mode:
Diffstat (limited to 'comp/work/31/menu.py')
-rw-r--r--comp/work/31/menu.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/comp/work/31/menu.py b/comp/work/31/menu.py
new file mode 100644
index 0000000..8f3c009
--- /dev/null
+++ b/comp/work/31/menu.py
@@ -0,0 +1,20 @@
+import merge
+import bubble
+
+
+while True:
+ list = []
+ inp = ""
+ print("enter nums, then enter END")
+ while inp != "END":
+ inp = input("number: ")
+ if inp != "END":
+ list.append(inp)
+
+ sort = int(input("1) bubble, 2) merge: "))
+
+ if sort == 1:
+ print(*merge.sort(list), sep=", ")
+
+ else:
+ print(*bubble.sort(list), sep=", ")