diff options
| author | Mohammad S Anwar <Mohammad.Anwar@yahoo.com> | 2023-03-08 21:24:09 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-08 21:24:09 +0000 |
| commit | bbd3eedb1d1a2179450a2af48054b874c6719cbe (patch) | |
| tree | 9e61bbaad409a9746addaf9f9ba3e347d6c2d0c2 /challenge-206 | |
| parent | 5c6863b58f6dce5acf6539c9c5e0cd33f0b860c4 (diff) | |
| parent | fe7a96b4ba5dc964a27bb8bb683f15dc619c21b6 (diff) | |
| download | perlweeklychallenge-club-bbd3eedb1d1a2179450a2af48054b874c6719cbe.tar.gz perlweeklychallenge-club-bbd3eedb1d1a2179450a2af48054b874c6719cbe.tar.bz2 perlweeklychallenge-club-bbd3eedb1d1a2179450a2af48054b874c6719cbe.zip | |
Merge pull request #7695 from spadacciniweb/PWC-207
PWC-207 - Perl, Python, Ruby, Go
Diffstat (limited to 'challenge-206')
| -rw-r--r-- | challenge-206/spadacciniweb/python/ch-1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-206/spadacciniweb/python/ch-1.py b/challenge-206/spadacciniweb/python/ch-1.py index 14d7e34598..ca0893c5cc 100644 --- a/challenge-206/spadacciniweb/python/ch-1.py +++ b/challenge-206/spadacciniweb/python/ch-1.py @@ -39,7 +39,7 @@ if __name__ == "__main__": len(list(filter(lambda x: re.search(r'\d\d:\d\d', x), input))) != len(input) or len(list(filter(lambda x: x > '24:00', input))) != 0 ): - sys.exit("Input error\n") + sys.exit("Input error") minutes = [get_minutes(x) for x in input] comb = combinations(range(len(input)), 2) |
