about summary refs log tree commit diff
path: root/NTU/hamar.py
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-12-15 15:09:13 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-12-15 15:09:13 +0700
commit9e28e4c7b67c54229df11d355047ac8a88ea1817 (patch)
tree0d9d40db69613c2c49564a3f1987a005d61f4db3 /NTU/hamar.py
parent67393f42f41ab92219deb549f711121c4dab845b (diff)
downloadcp-9e28e4c7b67c54229df11d355047ac8a88ea1817.tar.gz
Normalize pathname
Diffstat (limited to 'NTU/hamar.py')
-rw-r--r--NTU/hamar.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/NTU/hamar.py b/NTU/hamar.py
deleted file mode 100644
index 346edfa..0000000
--- a/NTU/hamar.py
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env python3
-
-from sys import stdin
-
-puncs_list = [[''], ['+', '-', '*', '/']]
-
-
-def puncs(length):
-    global puncs_list
-    if length < len(puncs_list):
-        return puncs_list[length]
-    else:   # length is certainly equal to len(puncs_list)
-        l = []
-        for i in puncs_list[-1]:
-            l.extend([i + c for c in '+-*/'])
-        puncs_list.append(l)
-        return l
-
-
-def ar(m, n):
-    i = 1
-    while True:
-        s = n * i
-
-
-
-if __name__ == '__main__':
-    #(m, n) = tuple(stdin.readline().split()[:2])
-    #print(ar(int(m), n))
-    for i in range(5):
-        print(puncs(i))