diff options
| author | Mohammad S Anwar <Mohammad.Anwar@yahoo.com> | 2021-11-15 00:08:17 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-15 00:08:17 +0000 |
| commit | 0a3465844a549fdad0c56581ea4da4b5f6fb045e (patch) | |
| tree | a40f8bafa1102aa6902415a83ed11f747e83d5e7 /challenge-138/abigail/python | |
| parent | 1925b8b0bda1acb5e528fdf926e33f8057ead67c (diff) | |
| parent | 2a559f3606c361aed983bc530557e885719c5792 (diff) | |
| download | perlweeklychallenge-club-0a3465844a549fdad0c56581ea4da4b5f6fb045e.tar.gz perlweeklychallenge-club-0a3465844a549fdad0c56581ea4da4b5f6fb045e.tar.bz2 perlweeklychallenge-club-0a3465844a549fdad0c56581ea4da4b5f6fb045e.zip | |
Merge pull request #5219 from Abigail/abigail/week-138
Abigail/week 138
Diffstat (limited to 'challenge-138/abigail/python')
| -rw-r--r-- | challenge-138/abigail/python/ch-1.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/challenge-138/abigail/python/ch-1.py b/challenge-138/abigail/python/ch-1.py index e2cb189de3..c503455f63 100644 --- a/challenge-138/abigail/python/ch-1.py +++ b/challenge-138/abigail/python/ch-1.py @@ -19,8 +19,8 @@ FRIDAY = 5 SATURDAY = 6 lookup = [ - [261, 261, 260, 260, 261, 261, 261], # Regular years - [262, 262, 261, 260, 261, 262, 262], # Leap years + [261, 260, 260, 261, 261, 261, 261], # Regular years + [262, 261, 260, 261, 262, 262, 262], # Leap years ] |
