summaryrefslogtreecommitdiff
path: root/2010_africa/b/b.py
diff options
context:
space:
mode:
authorYuval Adam <yuv.adm@gmail.com>2011-04-15 12:59:30 +0300
committerYuval Adam <yuv.adm@gmail.com>2011-04-15 12:59:30 +0300
commit05b05e1127e8732ac26cddaf4b5deffc3bda6182 (patch)
treed18efb1afd24d0431511c4bb6596c3c139f4a826 /2010_africa/b/b.py
parent208cdbc187b3aadbd13d920d25062c1d1d57975b (diff)
moved dirs around
Diffstat (limited to '2010_africa/b/b.py')
-rw-r--r--2010_africa/b/b.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/2010_africa/b/b.py b/2010_africa/b/b.py
deleted file mode 100644
index e568e18..0000000
--- a/2010_africa/b/b.py
+++ /dev/null
@@ -1,12 +0,0 @@
-from itertools import product
-
-f = open('3.in', 'r')
-o = open('3.out', 'w')
-
-n = int(f.readline().strip())
-
-for i in range(n):
- l = f.readline().strip()
- res = ' '.join(l.split(' ')[::-1])
- s = "Case #%d: %s\n" % (i+1, res)
- o.write(s)