diff options
| author | Abigail <abigail@abigail.be> | 2021-03-15 14:37:32 +0100 |
|---|---|---|
| committer | Abigail <abigail@abigail.be> | 2021-03-15 20:21:45 +0100 |
| commit | e18a3b4909665a6d9b0db5f0217e0b626ef9cb89 (patch) | |
| tree | e0a55f40fe73ef98f0b74c1cfeceac1f67a50751 /challenge-104/abigail/python/ch-1.py | |
| parent | e149d24da503c8ffef7c4d9eb78ef69546d35196 (diff) | |
| download | perlweeklychallenge-club-e18a3b4909665a6d9b0db5f0217e0b626ef9cb89.tar.gz perlweeklychallenge-club-e18a3b4909665a6d9b0db5f0217e0b626ef9cb89.tar.bz2 perlweeklychallenge-club-e18a3b4909665a6d9b0db5f0217e0b626ef9cb89.zip | |
Lua, Node.js, Python and Ruby solutions for week 104, part 1
Diffstat (limited to 'challenge-104/abigail/python/ch-1.py')
| -rw-r--r-- | challenge-104/abigail/python/ch-1.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/challenge-104/abigail/python/ch-1.py b/challenge-104/abigail/python/ch-1.py new file mode 100644 index 0000000000..8a7dac03e9 --- /dev/null +++ b/challenge-104/abigail/python/ch-1.py @@ -0,0 +1,12 @@ +#!/opt/local/bin/python + +# +# See ../README.md +# + +# +# Run as python ch-1.py +# + +print ("0 1 1 2 1 3 2 3 1 4 3 5 2 5 3 4 1 5 4 7 3 8 5 7 2 7 " + + "5 8 3 7 4 5 1 6 5 9 4 11 7 10 3 11 8 13 5 12 7 9 2 9") |
