From 38155eed11ba30d27664cab528f90e2e5c3aa40c Mon Sep 17 00:00:00 2001 From: sipp11 Date: Thu, 23 Oct 2014 11:38:30 +0700 Subject: [PATCH] [s8] bug fix & batch step1 - step 9 --- build/__init__.py | 0 one2nine.sh | 12 ++++++++++++ s8.py | 10 +++++----- 3 files changed, 17 insertions(+), 5 deletions(-) delete mode 100644 build/__init__.py create mode 100755 one2nine.sh diff --git a/build/__init__.py b/build/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/one2nine.sh b/one2nine.sh new file mode 100755 index 0000000..803f77f --- /dev/null +++ b/one2nine.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +mkdir -p build +python s1.py +python s2.py +python s3.py +python s4.py +python s5.py +python s6.py +python s7.py +python s8.py +python s9.py diff --git a/s8.py b/s8.py index f9623a9..580a048 100755 --- a/s8.py +++ b/s8.py @@ -10,11 +10,11 @@ import csv COMPARSION_PAIR = [ - (0, 0), (1, 1), (4, 2), (5, 3), - (8, 4), (10, 5), (11, 6), (13, 7), - (15, 8), (16, 9), (17, 10), (19, 11), - (20, 12), (22, 13), (25, 14), - (27, 15), (28, 16), (29, 17), (31, 18), + (2, 5), (3, 6), (6, 7), (7, 8), + (10, 9), (12, 10), (13, 11), (15, 12), + (17, 13), (18, 14), (19, 15), (21, 16), + (22, 17), (24, 18), (27, 19), + (29, 20), (30, 21), (31, 22), (33, 23), ]