├── .gitignore ├── LICENSE ├── README.md ├── anagram ├── .gitignore ├── Makefile ├── README.md ├── discussion.md ├── precis.txt ├── requirements.txt ├── solution.py ├── t │ └── words1.txt └── test.py ├── bacronym ├── .coverage ├── Makefile ├── README.md ├── discussion.md ├── precis.txt ├── solution.py ├── test.py └── test_bacronym.py ├── banner ├── README.md ├── alpha.txt ├── banner.py └── precis.txt ├── blackjack ├── Makefile ├── README.md ├── discussion.md ├── precis.txt ├── solution.py ├── test.py └── unit.py ├── boggle ├── .gitignore ├── Makefile ├── README.md ├── precis.txt ├── solution.py └── test.py ├── circle └── circle_area.py ├── evolve ├── .log └── evolve.py ├── family_tree ├── .gitignore ├── Digraph.gv.pdf ├── Makefile ├── README.md ├── bad.txt ├── discussion.md ├── joanie.txt ├── joanie.txt.gv.pdf ├── precis.txt ├── simone.gv.pdf ├── simone.py ├── solution.py ├── test.py ├── tudor.txt └── tudor.txt.gv.pdf ├── first_bank_of_change ├── Makefile ├── README.md ├── discussion.md ├── precis.txt ├── solution.py ├── test.py └── unit.py ├── gibberish ├── .gitignore ├── Makefile ├── README.md ├── discussion.md ├── precis.txt ├── solution.py ├── test.py └── unit.py ├── hamming ├── .gitignore ├── Makefile ├── README.md ├── american.txt ├── british.txt ├── fox.txt ├── hamm.py ├── input1.fa ├── sample1.fa ├── sample2.fa └── test.py ├── hamming_chain ├── Makefile ├── README.md ├── precis.txt ├── solution.py └── test.py ├── hangman ├── .mypy_cache │ └── 3.7 │ │ ├── @plugins_snapshot.json │ │ ├── _ast.data.json │ │ ├── _ast.meta.json │ │ ├── _importlib_modulespec.data.json │ │ ├── _importlib_modulespec.meta.json │ │ ├── _random.data.json │ │ ├── _random.meta.json │ │ ├── abc.data.json │ │ ├── abc.meta.json │ │ ├── argparse.data.json │ │ ├── argparse.meta.json │ │ ├── ast.data.json │ │ ├── ast.meta.json │ │ ├── builtins.data.json │ │ ├── builtins.meta.json │ │ ├── codecs.data.json │ │ ├── codecs.meta.json │ │ ├── collections │ │ ├── __init__.data.json │ │ ├── __init__.meta.json │ │ ├── abc.data.json │ │ └── abc.meta.json │ │ ├── enum.data.json │ │ ├── enum.meta.json │ │ ├── hangman.data.json │ │ ├── hangman.meta.json │ │ ├── importlib │ │ ├── __init__.data.json │ │ ├── __init__.meta.json │ │ ├── abc.data.json │ │ └── abc.meta.json │ │ ├── io.data.json │ │ ├── io.meta.json │ │ ├── mmap.data.json │ │ ├── mmap.meta.json │ │ ├── os │ │ ├── __init__.data.json │ │ ├── __init__.meta.json │ │ ├── path.data.json │ │ └── path.meta.json │ │ ├── posix.data.json │ │ ├── posix.meta.json │ │ ├── random.data.json │ │ ├── random.meta.json │ │ ├── re.data.json │ │ ├── re.meta.json │ │ ├── sys.data.json │ │ ├── sys.meta.json │ │ ├── types.data.json │ │ ├── types.meta.json │ │ ├── typing.data.json │ │ ├── typing.meta.json │ │ ├── typing_extensions.data.json │ │ └── typing_extensions.meta.json ├── Makefile ├── README.md ├── discussion.md ├── precis.txt ├── solution.py ├── test.py └── unit.py ├── histy ├── Makefile ├── README.md ├── discussion.md ├── mk-out.sh ├── precis.txt ├── solution.py ├── test-outs │ ├── fox.txt │ ├── fox.txt.1 │ ├── fox.txt.2 │ ├── fox.txt.3 │ ├── sonnet-29.txt.1 │ └── sonnet-29.txt.2 └── test.py ├── inputs ├── 1000.txt ├── 1945-boys.txt ├── 1945-girls.txt ├── Makefile ├── const.txt ├── dickinson.txt ├── fox.txt ├── gettysburg.txt ├── issa.txt ├── nobody.txt ├── now.txt ├── out.txt ├── preamble.txt ├── scarlet.txt ├── sonnet-29.txt ├── sonnets.txt ├── spiders.txt ├── the-bustle.txt ├── uscities.txt ├── usdeclar.txt ├── words.txt └── words.txt.zip ├── license_plates ├── Makefile ├── README.md ├── precis.txt ├── solution.py └── test.py ├── markov_chain ├── Makefile ├── README.md ├── discussion.md ├── mk-outs.sh ├── precis.txt ├── solution.py ├── test-outs │ ├── const.seed3.width70.len500 │ ├── const.seed4.width50.len300.words1 │ ├── const.seed4.width50.len300.words3 │ └── dickinson.seed1.width30.len100 └── test.py ├── morse ├── README.md ├── precis.txt ├── solution.py └── unit.py ├── movie_reader ├── README.md ├── precis.txt └── solution.py ├── nickel_and_dime ├── README.md └── nickel_and_dime.py ├── palindromes ├── Makefile ├── README.md ├── input.txt ├── solution.py └── test.py ├── pareto ├── Makefile ├── README.md ├── discussion.md ├── precis.txt ├── solution.py └── test.py ├── piggy ├── .gitignore ├── Makefile ├── README.md ├── discussion.md ├── mk-outs.sh ├── precis.txt ├── solution.py ├── test-outs │ ├── gettysburg.txt │ ├── nobody.txt │ └── usdeclar.txt ├── test.py └── ~ │ └── python │ └── pigsty │ └── out_files │ └── spiders.txt ├── rock_paper_scissors ├── README.md ├── precis.txt └── solution.py ├── rot13 ├── .mypy_cache │ └── 3.7 │ │ ├── @plugins_snapshot.json │ │ ├── _ast.data.json │ │ ├── _ast.meta.json │ │ ├── _importlib_modulespec.data.json │ │ ├── _importlib_modulespec.meta.json │ │ ├── _random.data.json │ │ ├── _random.meta.json │ │ ├── abc.data.json │ │ ├── abc.meta.json │ │ ├── argparse.data.json │ │ ├── argparse.meta.json │ │ ├── ast.data.json │ │ ├── ast.meta.json │ │ ├── builtins.data.json │ │ ├── builtins.meta.json │ │ ├── codecs.data.json │ │ ├── codecs.meta.json │ │ ├── collections │ │ ├── __init__.data.json │ │ ├── __init__.meta.json │ │ ├── abc.data.json │ │ └── abc.meta.json │ │ ├── enum.data.json │ │ ├── enum.meta.json │ │ ├── importlib │ │ ├── __init__.data.json │ │ ├── __init__.meta.json │ │ ├── abc.data.json │ │ └── abc.meta.json │ │ ├── io.data.json │ │ ├── io.meta.json │ │ ├── mmap.data.json │ │ ├── mmap.meta.json │ │ ├── os │ │ ├── __init__.data.json │ │ ├── __init__.meta.json │ │ ├── path.data.json │ │ └── path.meta.json │ │ ├── posix.data.json │ │ ├── posix.meta.json │ │ ├── random.data.json │ │ ├── random.meta.json │ │ ├── re.data.json │ │ ├── re.meta.json │ │ ├── rot13.data.json │ │ ├── rot13.meta.json │ │ ├── string.data.json │ │ ├── string.meta.json │ │ ├── sys.data.json │ │ ├── sys.meta.json │ │ ├── textwrap.data.json │ │ ├── textwrap.meta.json │ │ ├── types.data.json │ │ ├── types.meta.json │ │ ├── typing.data.json │ │ ├── typing.meta.json │ │ ├── typing_extensions.data.json │ │ ├── typing_extensions.meta.json │ │ ├── unit.data.json │ │ └── unit.meta.json ├── Makefile ├── README.md ├── mk-outs.sh ├── precis.txt ├── solution.py ├── test-out │ ├── fox.txt.out.S1 │ ├── fox.txt.out.S2.w30 │ ├── fox.txt.out.S3.p5.w25 │ ├── fox.txt.out.S4.s5 │ ├── sonnet.txt.out.S1 │ ├── sonnet.txt.out.S2.w30 │ ├── sonnet.txt.out.S3.p5.w25 │ └── sonnet.txt.out.S4.s5 ├── test.py └── unit.py ├── ruinator ├── Makefile ├── README.md ├── ruinator.py ├── test.py ├── unit.py └── words.txt ├── rummikub ├── Makefile ├── README.md ├── precis.txt ├── solution.py ├── test.py └── unit.py ├── runny_babbit ├── Makefile ├── README.md ├── discussion.md ├── input1.txt ├── precis.txt ├── solution.py └── test.py ├── scrabble ├── .mypy_cache │ └── 3.7 │ │ ├── @plugins_snapshot.json │ │ ├── _ast.data.json │ │ ├── _ast.meta.json │ │ ├── _importlib_modulespec.data.json │ │ ├── _importlib_modulespec.meta.json │ │ ├── _random.data.json │ │ ├── _random.meta.json │ │ ├── abc.data.json │ │ ├── abc.meta.json │ │ ├── argparse.data.json │ │ ├── argparse.meta.json │ │ ├── ast.data.json │ │ ├── ast.meta.json │ │ ├── builtins.data.json │ │ ├── builtins.meta.json │ │ ├── codecs.data.json │ │ ├── codecs.meta.json │ │ ├── collections │ │ ├── __init__.data.json │ │ ├── __init__.meta.json │ │ ├── abc.data.json │ │ └── abc.meta.json │ │ ├── importlib │ │ ├── __init__.data.json │ │ ├── __init__.meta.json │ │ ├── abc.data.json │ │ └── abc.meta.json │ │ ├── io.data.json │ │ ├── io.meta.json │ │ ├── itertools.data.json │ │ ├── itertools.meta.json │ │ ├── mmap.data.json │ │ ├── mmap.meta.json │ │ ├── os │ │ ├── __init__.data.json │ │ ├── __init__.meta.json │ │ ├── path.data.json │ │ └── path.meta.json │ │ ├── posix.data.json │ │ ├── posix.meta.json │ │ ├── random.data.json │ │ ├── random.meta.json │ │ ├── scrabble.data.json │ │ ├── scrabble.meta.json │ │ ├── sys.data.json │ │ ├── sys.meta.json │ │ ├── types.data.json │ │ ├── types.meta.json │ │ ├── typing.data.json │ │ ├── typing.meta.json │ │ ├── typing_extensions.data.json │ │ └── typing_extensions.meta.json ├── Makefile ├── README.md ├── discussion.md ├── precis.txt ├── solution.py ├── test.py └── unit.py ├── set ├── Makefile ├── README.md ├── discussion.md ├── precis.txt ├── solution.py └── test.py ├── skip_to_my_lou └── skip.py ├── soundex_rhymer ├── Makefile ├── README.md ├── discussion.md ├── precis.txt ├── solution.py └── test.py ├── state_codes └── codes.txt ├── substring ├── Makefile ├── README.md ├── precis.txt └── solution.py ├── tictactoe ├── Makefile ├── README.md ├── full_ttt.py ├── precis.txt ├── solution.py ├── test.py └── unit.py ├── transpose ├── Makefile ├── README.md ├── mk-out.sh ├── precis.txt ├── solution.py ├── songs │ ├── legacy.abc │ ├── legacy.abc.-5.out │ ├── legacy.abc.2.out │ ├── legacy.abc.4.out │ ├── paddy.abc │ ├── paddy.abc.-5.out │ ├── paddy.abc.2.out │ └── paddy.abc.4.out └── test.py ├── war ├── Makefile ├── README.md ├── precis.txt ├── solution.py └── test.py └── word_search ├── Makefile ├── README.md ├── bad_grid.txt ├── discussion.md ├── ice_cream.txt ├── precis.txt ├── puzzle01.txt ├── puzzle02.txt ├── puzzle03.txt ├── puzzle04.txt ├── puzzle05.txt ├── puzzle06.txt ├── puzzle07.txt ├── puzzle08.txt ├── puzzle09.txt ├── shapes.txt ├── solution.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/README.md -------------------------------------------------------------------------------- /anagram/.gitignore: -------------------------------------------------------------------------------- 1 | .log 2 | -------------------------------------------------------------------------------- /anagram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/anagram/Makefile -------------------------------------------------------------------------------- /anagram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/anagram/README.md -------------------------------------------------------------------------------- /anagram/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/anagram/discussion.md -------------------------------------------------------------------------------- /anagram/precis.txt: -------------------------------------------------------------------------------- 1 | Finding anagrams of words. 2 | -------------------------------------------------------------------------------- /anagram/requirements.txt: -------------------------------------------------------------------------------- 1 | dire>=0.1.3 2 | -------------------------------------------------------------------------------- /anagram/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/anagram/solution.py -------------------------------------------------------------------------------- /anagram/t/words1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/anagram/t/words1.txt -------------------------------------------------------------------------------- /anagram/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/anagram/test.py -------------------------------------------------------------------------------- /bacronym/.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/bacronym/.coverage -------------------------------------------------------------------------------- /bacronym/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/bacronym/Makefile -------------------------------------------------------------------------------- /bacronym/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/bacronym/README.md -------------------------------------------------------------------------------- /bacronym/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/bacronym/discussion.md -------------------------------------------------------------------------------- /bacronym/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/bacronym/precis.txt -------------------------------------------------------------------------------- /bacronym/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/bacronym/solution.py -------------------------------------------------------------------------------- /bacronym/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/bacronym/test.py -------------------------------------------------------------------------------- /bacronym/test_bacronym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/bacronym/test_bacronym.py -------------------------------------------------------------------------------- /banner/README.md: -------------------------------------------------------------------------------- 1 | # Banner 2 | 3 | Big letters! 4 | -------------------------------------------------------------------------------- /banner/alpha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/banner/alpha.txt -------------------------------------------------------------------------------- /banner/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/banner/banner.py -------------------------------------------------------------------------------- /banner/precis.txt: -------------------------------------------------------------------------------- 1 | Create large ASCII letters. 2 | -------------------------------------------------------------------------------- /blackjack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/blackjack/Makefile -------------------------------------------------------------------------------- /blackjack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/blackjack/README.md -------------------------------------------------------------------------------- /blackjack/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/blackjack/discussion.md -------------------------------------------------------------------------------- /blackjack/precis.txt: -------------------------------------------------------------------------------- 1 | An abbreviated version of the card game "Blackjack" (AKA "Twenty-One"). 2 | -------------------------------------------------------------------------------- /blackjack/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/blackjack/solution.py -------------------------------------------------------------------------------- /blackjack/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/blackjack/test.py -------------------------------------------------------------------------------- /blackjack/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/blackjack/unit.py -------------------------------------------------------------------------------- /boggle/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | -------------------------------------------------------------------------------- /boggle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/boggle/Makefile -------------------------------------------------------------------------------- /boggle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/boggle/README.md -------------------------------------------------------------------------------- /boggle/precis.txt: -------------------------------------------------------------------------------- 1 | Write a Boggle game. 2 | -------------------------------------------------------------------------------- /boggle/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/boggle/solution.py -------------------------------------------------------------------------------- /boggle/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/boggle/test.py -------------------------------------------------------------------------------- /circle/circle_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/circle/circle_area.py -------------------------------------------------------------------------------- /evolve/.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/evolve/.log -------------------------------------------------------------------------------- /evolve/evolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/evolve/evolve.py -------------------------------------------------------------------------------- /family_tree/.gitignore: -------------------------------------------------------------------------------- 1 | *.gv 2 | -------------------------------------------------------------------------------- /family_tree/Digraph.gv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/family_tree/Digraph.gv.pdf -------------------------------------------------------------------------------- /family_tree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/family_tree/Makefile -------------------------------------------------------------------------------- /family_tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/family_tree/README.md -------------------------------------------------------------------------------- /family_tree/bad.txt: -------------------------------------------------------------------------------- 1 | this is bad 2 | -------------------------------------------------------------------------------- /family_tree/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/family_tree/discussion.md -------------------------------------------------------------------------------- /family_tree/joanie.txt: -------------------------------------------------------------------------------- 1 | Joanie married Chachi 2 | -------------------------------------------------------------------------------- /family_tree/joanie.txt.gv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/family_tree/joanie.txt.gv.pdf -------------------------------------------------------------------------------- /family_tree/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/family_tree/precis.txt -------------------------------------------------------------------------------- /family_tree/simone.gv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/family_tree/simone.gv.pdf -------------------------------------------------------------------------------- /family_tree/simone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/family_tree/simone.py -------------------------------------------------------------------------------- /family_tree/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/family_tree/solution.py -------------------------------------------------------------------------------- /family_tree/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/family_tree/test.py -------------------------------------------------------------------------------- /family_tree/tudor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/family_tree/tudor.txt -------------------------------------------------------------------------------- /family_tree/tudor.txt.gv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/family_tree/tudor.txt.gv.pdf -------------------------------------------------------------------------------- /first_bank_of_change/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/first_bank_of_change/Makefile -------------------------------------------------------------------------------- /first_bank_of_change/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/first_bank_of_change/README.md -------------------------------------------------------------------------------- /first_bank_of_change/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/first_bank_of_change/discussion.md -------------------------------------------------------------------------------- /first_bank_of_change/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/first_bank_of_change/precis.txt -------------------------------------------------------------------------------- /first_bank_of_change/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/first_bank_of_change/solution.py -------------------------------------------------------------------------------- /first_bank_of_change/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/first_bank_of_change/test.py -------------------------------------------------------------------------------- /first_bank_of_change/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/first_bank_of_change/unit.py -------------------------------------------------------------------------------- /gibberish/.gitignore: -------------------------------------------------------------------------------- 1 | .log 2 | -------------------------------------------------------------------------------- /gibberish/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/gibberish/Makefile -------------------------------------------------------------------------------- /gibberish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/gibberish/README.md -------------------------------------------------------------------------------- /gibberish/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/gibberish/discussion.md -------------------------------------------------------------------------------- /gibberish/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/gibberish/precis.txt -------------------------------------------------------------------------------- /gibberish/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/gibberish/solution.py -------------------------------------------------------------------------------- /gibberish/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/gibberish/test.py -------------------------------------------------------------------------------- /gibberish/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/gibberish/unit.py -------------------------------------------------------------------------------- /hamming/.gitignore: -------------------------------------------------------------------------------- 1 | .log 2 | -------------------------------------------------------------------------------- /hamming/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hamming/Makefile -------------------------------------------------------------------------------- /hamming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hamming/README.md -------------------------------------------------------------------------------- /hamming/american.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hamming/american.txt -------------------------------------------------------------------------------- /hamming/british.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hamming/british.txt -------------------------------------------------------------------------------- /hamming/fox.txt: -------------------------------------------------------------------------------- 1 | The quick brown fox jumps over the lazy dog. 2 | -------------------------------------------------------------------------------- /hamming/hamm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hamming/hamm.py -------------------------------------------------------------------------------- /hamming/input1.fa: -------------------------------------------------------------------------------- 1 | >1 2 | foo 3 | >2 4 | faa 5 | -------------------------------------------------------------------------------- /hamming/sample1.fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hamming/sample1.fa -------------------------------------------------------------------------------- /hamming/sample2.fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hamming/sample2.fa -------------------------------------------------------------------------------- /hamming/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hamming/test.py -------------------------------------------------------------------------------- /hamming_chain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hamming_chain/Makefile -------------------------------------------------------------------------------- /hamming_chain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hamming_chain/README.md -------------------------------------------------------------------------------- /hamming_chain/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hamming_chain/precis.txt -------------------------------------------------------------------------------- /hamming_chain/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hamming_chain/solution.py -------------------------------------------------------------------------------- /hamming_chain/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hamming_chain/test.py -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/@plugins_snapshot.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/_ast.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/_ast.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/_ast.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/_ast.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/_importlib_modulespec.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/_importlib_modulespec.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/_importlib_modulespec.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/_importlib_modulespec.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/_random.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/_random.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/_random.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/_random.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/abc.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/abc.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/abc.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/abc.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/argparse.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/argparse.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/argparse.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/argparse.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/ast.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/ast.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/ast.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/ast.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/builtins.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/builtins.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/builtins.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/builtins.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/codecs.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/codecs.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/codecs.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/codecs.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/collections/__init__.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/collections/__init__.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/collections/__init__.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/collections/__init__.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/collections/abc.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/collections/abc.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/collections/abc.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/collections/abc.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/enum.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/enum.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/enum.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/enum.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/hangman.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/hangman.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/hangman.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/hangman.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/importlib/__init__.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/importlib/__init__.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/importlib/__init__.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/importlib/__init__.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/importlib/abc.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/importlib/abc.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/importlib/abc.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/importlib/abc.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/io.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/io.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/io.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/io.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/mmap.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/mmap.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/mmap.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/mmap.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/os/__init__.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/os/__init__.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/os/__init__.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/os/__init__.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/os/path.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/os/path.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/os/path.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/os/path.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/posix.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/posix.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/posix.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/posix.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/random.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/random.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/random.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/random.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/re.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/re.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/re.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/re.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/sys.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/sys.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/sys.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/sys.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/types.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/types.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/types.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/types.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/typing.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/typing.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/typing.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/typing.meta.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/typing_extensions.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/typing_extensions.data.json -------------------------------------------------------------------------------- /hangman/.mypy_cache/3.7/typing_extensions.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/.mypy_cache/3.7/typing_extensions.meta.json -------------------------------------------------------------------------------- /hangman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/Makefile -------------------------------------------------------------------------------- /hangman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/README.md -------------------------------------------------------------------------------- /hangman/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/discussion.md -------------------------------------------------------------------------------- /hangman/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/precis.txt -------------------------------------------------------------------------------- /hangman/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/solution.py -------------------------------------------------------------------------------- /hangman/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/test.py -------------------------------------------------------------------------------- /hangman/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/hangman/unit.py -------------------------------------------------------------------------------- /histy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/histy/Makefile -------------------------------------------------------------------------------- /histy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/histy/README.md -------------------------------------------------------------------------------- /histy/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/histy/discussion.md -------------------------------------------------------------------------------- /histy/mk-out.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/histy/mk-out.sh -------------------------------------------------------------------------------- /histy/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/histy/precis.txt -------------------------------------------------------------------------------- /histy/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/histy/solution.py -------------------------------------------------------------------------------- /histy/test-outs/fox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/histy/test-outs/fox.txt -------------------------------------------------------------------------------- /histy/test-outs/fox.txt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/histy/test-outs/fox.txt.1 -------------------------------------------------------------------------------- /histy/test-outs/fox.txt.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/histy/test-outs/fox.txt.2 -------------------------------------------------------------------------------- /histy/test-outs/fox.txt.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/histy/test-outs/fox.txt.3 -------------------------------------------------------------------------------- /histy/test-outs/sonnet-29.txt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/histy/test-outs/sonnet-29.txt.1 -------------------------------------------------------------------------------- /histy/test-outs/sonnet-29.txt.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/histy/test-outs/sonnet-29.txt.2 -------------------------------------------------------------------------------- /histy/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/histy/test.py -------------------------------------------------------------------------------- /inputs/1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/1000.txt -------------------------------------------------------------------------------- /inputs/1945-boys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/1945-boys.txt -------------------------------------------------------------------------------- /inputs/1945-girls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/1945-girls.txt -------------------------------------------------------------------------------- /inputs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/Makefile -------------------------------------------------------------------------------- /inputs/const.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/const.txt -------------------------------------------------------------------------------- /inputs/dickinson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/dickinson.txt -------------------------------------------------------------------------------- /inputs/fox.txt: -------------------------------------------------------------------------------- 1 | The quick brown fox jumps over the lazy dog. 2 | -------------------------------------------------------------------------------- /inputs/gettysburg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/gettysburg.txt -------------------------------------------------------------------------------- /inputs/issa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/issa.txt -------------------------------------------------------------------------------- /inputs/nobody.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/nobody.txt -------------------------------------------------------------------------------- /inputs/now.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/now.txt -------------------------------------------------------------------------------- /inputs/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/out.txt -------------------------------------------------------------------------------- /inputs/preamble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/preamble.txt -------------------------------------------------------------------------------- /inputs/scarlet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/scarlet.txt -------------------------------------------------------------------------------- /inputs/sonnet-29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/sonnet-29.txt -------------------------------------------------------------------------------- /inputs/sonnets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/sonnets.txt -------------------------------------------------------------------------------- /inputs/spiders.txt: -------------------------------------------------------------------------------- 1 | Don't worry, spiders, 2 | I keep house 3 | casually. 4 | -------------------------------------------------------------------------------- /inputs/the-bustle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/the-bustle.txt -------------------------------------------------------------------------------- /inputs/uscities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/uscities.txt -------------------------------------------------------------------------------- /inputs/usdeclar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/usdeclar.txt -------------------------------------------------------------------------------- /inputs/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/words.txt -------------------------------------------------------------------------------- /inputs/words.txt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/inputs/words.txt.zip -------------------------------------------------------------------------------- /license_plates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/license_plates/Makefile -------------------------------------------------------------------------------- /license_plates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/license_plates/README.md -------------------------------------------------------------------------------- /license_plates/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/license_plates/precis.txt -------------------------------------------------------------------------------- /license_plates/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/license_plates/solution.py -------------------------------------------------------------------------------- /license_plates/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/license_plates/test.py -------------------------------------------------------------------------------- /markov_chain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/markov_chain/Makefile -------------------------------------------------------------------------------- /markov_chain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/markov_chain/README.md -------------------------------------------------------------------------------- /markov_chain/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/markov_chain/discussion.md -------------------------------------------------------------------------------- /markov_chain/mk-outs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/markov_chain/mk-outs.sh -------------------------------------------------------------------------------- /markov_chain/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/markov_chain/precis.txt -------------------------------------------------------------------------------- /markov_chain/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/markov_chain/solution.py -------------------------------------------------------------------------------- /markov_chain/test-outs/const.seed3.width70.len500: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/markov_chain/test-outs/const.seed3.width70.len500 -------------------------------------------------------------------------------- /markov_chain/test-outs/const.seed4.width50.len300.words1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/markov_chain/test-outs/const.seed4.width50.len300.words1 -------------------------------------------------------------------------------- /markov_chain/test-outs/const.seed4.width50.len300.words3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/markov_chain/test-outs/const.seed4.width50.len300.words3 -------------------------------------------------------------------------------- /markov_chain/test-outs/dickinson.seed1.width30.len100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/markov_chain/test-outs/dickinson.seed1.width30.len100 -------------------------------------------------------------------------------- /markov_chain/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/markov_chain/test.py -------------------------------------------------------------------------------- /morse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/morse/README.md -------------------------------------------------------------------------------- /morse/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/morse/precis.txt -------------------------------------------------------------------------------- /morse/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/morse/solution.py -------------------------------------------------------------------------------- /morse/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/morse/unit.py -------------------------------------------------------------------------------- /movie_reader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/movie_reader/README.md -------------------------------------------------------------------------------- /movie_reader/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/movie_reader/precis.txt -------------------------------------------------------------------------------- /movie_reader/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/movie_reader/solution.py -------------------------------------------------------------------------------- /nickel_and_dime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/nickel_and_dime/README.md -------------------------------------------------------------------------------- /nickel_and_dime/nickel_and_dime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/nickel_and_dime/nickel_and_dime.py -------------------------------------------------------------------------------- /palindromes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/palindromes/Makefile -------------------------------------------------------------------------------- /palindromes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/palindromes/README.md -------------------------------------------------------------------------------- /palindromes/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/palindromes/input.txt -------------------------------------------------------------------------------- /palindromes/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/palindromes/solution.py -------------------------------------------------------------------------------- /palindromes/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/palindromes/test.py -------------------------------------------------------------------------------- /pareto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/pareto/Makefile -------------------------------------------------------------------------------- /pareto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/pareto/README.md -------------------------------------------------------------------------------- /pareto/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/pareto/discussion.md -------------------------------------------------------------------------------- /pareto/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/pareto/precis.txt -------------------------------------------------------------------------------- /pareto/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/pareto/solution.py -------------------------------------------------------------------------------- /pareto/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/pareto/test.py -------------------------------------------------------------------------------- /piggy/.gitignore: -------------------------------------------------------------------------------- 1 | out-yay 2 | -------------------------------------------------------------------------------- /piggy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/piggy/Makefile -------------------------------------------------------------------------------- /piggy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/piggy/README.md -------------------------------------------------------------------------------- /piggy/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/piggy/discussion.md -------------------------------------------------------------------------------- /piggy/mk-outs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/piggy/mk-outs.sh -------------------------------------------------------------------------------- /piggy/precis.txt: -------------------------------------------------------------------------------- 1 | Encode text using the Pig Latin algorithm. 2 | -------------------------------------------------------------------------------- /piggy/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/piggy/solution.py -------------------------------------------------------------------------------- /piggy/test-outs/gettysburg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/piggy/test-outs/gettysburg.txt -------------------------------------------------------------------------------- /piggy/test-outs/nobody.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/piggy/test-outs/nobody.txt -------------------------------------------------------------------------------- /piggy/test-outs/usdeclar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/piggy/test-outs/usdeclar.txt -------------------------------------------------------------------------------- /piggy/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/piggy/test.py -------------------------------------------------------------------------------- /piggy/~/python/pigsty/out_files/spiders.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rock_paper_scissors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rock_paper_scissors/README.md -------------------------------------------------------------------------------- /rock_paper_scissors/precis.txt: -------------------------------------------------------------------------------- 1 | Write the "Rock, Paper, Scissors" game. 2 | -------------------------------------------------------------------------------- /rock_paper_scissors/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rock_paper_scissors/solution.py -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/@plugins_snapshot.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/_ast.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/_ast.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/_ast.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/_ast.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/_importlib_modulespec.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/_importlib_modulespec.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/_importlib_modulespec.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/_importlib_modulespec.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/_random.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/_random.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/_random.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/_random.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/abc.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/abc.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/abc.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/abc.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/argparse.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/argparse.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/argparse.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/argparse.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/ast.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/ast.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/ast.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/ast.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/builtins.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/builtins.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/builtins.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/builtins.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/codecs.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/codecs.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/codecs.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/codecs.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/collections/__init__.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/collections/__init__.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/collections/__init__.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/collections/__init__.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/collections/abc.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/collections/abc.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/collections/abc.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/collections/abc.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/enum.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/enum.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/enum.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/enum.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/importlib/__init__.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/importlib/__init__.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/importlib/__init__.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/importlib/__init__.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/importlib/abc.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/importlib/abc.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/importlib/abc.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/importlib/abc.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/io.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/io.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/io.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/io.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/mmap.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/mmap.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/mmap.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/mmap.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/os/__init__.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/os/__init__.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/os/__init__.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/os/__init__.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/os/path.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/os/path.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/os/path.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/os/path.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/posix.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/posix.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/posix.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/posix.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/random.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/random.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/random.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/random.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/re.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/re.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/re.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/re.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/rot13.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/rot13.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/rot13.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/rot13.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/string.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/string.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/string.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/string.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/sys.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/sys.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/sys.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/sys.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/textwrap.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/textwrap.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/textwrap.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/textwrap.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/types.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/types.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/types.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/types.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/typing.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/typing.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/typing.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/typing.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/typing_extensions.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/typing_extensions.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/typing_extensions.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/typing_extensions.meta.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/unit.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/unit.data.json -------------------------------------------------------------------------------- /rot13/.mypy_cache/3.7/unit.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/.mypy_cache/3.7/unit.meta.json -------------------------------------------------------------------------------- /rot13/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/Makefile -------------------------------------------------------------------------------- /rot13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/README.md -------------------------------------------------------------------------------- /rot13/mk-outs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/mk-outs.sh -------------------------------------------------------------------------------- /rot13/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/precis.txt -------------------------------------------------------------------------------- /rot13/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/solution.py -------------------------------------------------------------------------------- /rot13/test-out/fox.txt.out.S1: -------------------------------------------------------------------------------- 1 | GURD HVPX OEBJ ASBK WHZC FBIR EGUR YNML QBTE 2 | -------------------------------------------------------------------------------- /rot13/test-out/fox.txt.out.S2.w30: -------------------------------------------------------------------------------- 1 | GURD HVPX OEBJ ASBK WHZC FBIR 2 | EGUR YNML QBTB 3 | -------------------------------------------------------------------------------- /rot13/test-out/fox.txt.out.S3.p5.w25: -------------------------------------------------------------------------------- 1 | GURDH VPXOE BJASB KWHZC 2 | FBIRE GURYN MLQBT 3 | -------------------------------------------------------------------------------- /rot13/test-out/fox.txt.out.S4.s5: -------------------------------------------------------------------------------- 1 | YMJV ZNHP GWTB SKTC OZRU XTAJ WYMJ QFED ITLH 2 | -------------------------------------------------------------------------------- /rot13/test-out/sonnet.txt.out.S1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/test-out/sonnet.txt.out.S1 -------------------------------------------------------------------------------- /rot13/test-out/sonnet.txt.out.S2.w30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/test-out/sonnet.txt.out.S2.w30 -------------------------------------------------------------------------------- /rot13/test-out/sonnet.txt.out.S3.p5.w25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/test-out/sonnet.txt.out.S3.p5.w25 -------------------------------------------------------------------------------- /rot13/test-out/sonnet.txt.out.S4.s5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/test-out/sonnet.txt.out.S4.s5 -------------------------------------------------------------------------------- /rot13/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/test.py -------------------------------------------------------------------------------- /rot13/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rot13/unit.py -------------------------------------------------------------------------------- /ruinator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/ruinator/Makefile -------------------------------------------------------------------------------- /ruinator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/ruinator/README.md -------------------------------------------------------------------------------- /ruinator/ruinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/ruinator/ruinator.py -------------------------------------------------------------------------------- /ruinator/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/ruinator/test.py -------------------------------------------------------------------------------- /ruinator/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/ruinator/unit.py -------------------------------------------------------------------------------- /ruinator/words.txt: -------------------------------------------------------------------------------- 1 | star 2 | start 3 | -------------------------------------------------------------------------------- /rummikub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rummikub/Makefile -------------------------------------------------------------------------------- /rummikub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rummikub/README.md -------------------------------------------------------------------------------- /rummikub/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rummikub/precis.txt -------------------------------------------------------------------------------- /rummikub/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rummikub/solution.py -------------------------------------------------------------------------------- /rummikub/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rummikub/test.py -------------------------------------------------------------------------------- /rummikub/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/rummikub/unit.py -------------------------------------------------------------------------------- /runny_babbit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/runny_babbit/Makefile -------------------------------------------------------------------------------- /runny_babbit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/runny_babbit/README.md -------------------------------------------------------------------------------- /runny_babbit/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/runny_babbit/discussion.md -------------------------------------------------------------------------------- /runny_babbit/input1.txt: -------------------------------------------------------------------------------- 1 | The bunny rabbit is cute. 2 | -------------------------------------------------------------------------------- /runny_babbit/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/runny_babbit/precis.txt -------------------------------------------------------------------------------- /runny_babbit/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/runny_babbit/solution.py -------------------------------------------------------------------------------- /runny_babbit/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/runny_babbit/test.py -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/@plugins_snapshot.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/_ast.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/_ast.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/_ast.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/_ast.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/_importlib_modulespec.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/_importlib_modulespec.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/_importlib_modulespec.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/_importlib_modulespec.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/_random.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/_random.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/_random.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/_random.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/abc.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/abc.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/abc.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/abc.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/argparse.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/argparse.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/argparse.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/argparse.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/ast.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/ast.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/ast.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/ast.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/builtins.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/builtins.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/builtins.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/builtins.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/codecs.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/codecs.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/codecs.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/codecs.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/collections/__init__.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/collections/__init__.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/collections/__init__.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/collections/__init__.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/collections/abc.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/collections/abc.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/collections/abc.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/collections/abc.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/importlib/__init__.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/importlib/__init__.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/importlib/__init__.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/importlib/__init__.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/importlib/abc.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/importlib/abc.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/importlib/abc.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/importlib/abc.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/io.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/io.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/io.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/io.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/itertools.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/itertools.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/itertools.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/itertools.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/mmap.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/mmap.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/mmap.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/mmap.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/os/__init__.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/os/__init__.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/os/__init__.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/os/__init__.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/os/path.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/os/path.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/os/path.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/os/path.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/posix.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/posix.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/posix.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/posix.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/random.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/random.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/random.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/random.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/scrabble.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/scrabble.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/scrabble.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/scrabble.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/sys.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/sys.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/sys.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/sys.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/types.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/types.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/types.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/types.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/typing.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/typing.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/typing.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/typing.meta.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/typing_extensions.data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/typing_extensions.data.json -------------------------------------------------------------------------------- /scrabble/.mypy_cache/3.7/typing_extensions.meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/.mypy_cache/3.7/typing_extensions.meta.json -------------------------------------------------------------------------------- /scrabble/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/Makefile -------------------------------------------------------------------------------- /scrabble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/README.md -------------------------------------------------------------------------------- /scrabble/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/discussion.md -------------------------------------------------------------------------------- /scrabble/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/precis.txt -------------------------------------------------------------------------------- /scrabble/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/solution.py -------------------------------------------------------------------------------- /scrabble/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/test.py -------------------------------------------------------------------------------- /scrabble/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/scrabble/unit.py -------------------------------------------------------------------------------- /set/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/set/Makefile -------------------------------------------------------------------------------- /set/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/set/README.md -------------------------------------------------------------------------------- /set/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/set/discussion.md -------------------------------------------------------------------------------- /set/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/set/precis.txt -------------------------------------------------------------------------------- /set/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/set/solution.py -------------------------------------------------------------------------------- /set/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/set/test.py -------------------------------------------------------------------------------- /skip_to_my_lou/skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/skip_to_my_lou/skip.py -------------------------------------------------------------------------------- /soundex_rhymer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/soundex_rhymer/Makefile -------------------------------------------------------------------------------- /soundex_rhymer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/soundex_rhymer/README.md -------------------------------------------------------------------------------- /soundex_rhymer/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/soundex_rhymer/discussion.md -------------------------------------------------------------------------------- /soundex_rhymer/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/soundex_rhymer/precis.txt -------------------------------------------------------------------------------- /soundex_rhymer/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/soundex_rhymer/solution.py -------------------------------------------------------------------------------- /soundex_rhymer/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/soundex_rhymer/test.py -------------------------------------------------------------------------------- /state_codes/codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/state_codes/codes.txt -------------------------------------------------------------------------------- /substring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/substring/Makefile -------------------------------------------------------------------------------- /substring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/substring/README.md -------------------------------------------------------------------------------- /substring/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/substring/precis.txt -------------------------------------------------------------------------------- /substring/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/substring/solution.py -------------------------------------------------------------------------------- /tictactoe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/tictactoe/Makefile -------------------------------------------------------------------------------- /tictactoe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/tictactoe/README.md -------------------------------------------------------------------------------- /tictactoe/full_ttt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/tictactoe/full_ttt.py -------------------------------------------------------------------------------- /tictactoe/precis.txt: -------------------------------------------------------------------------------- 1 | Play a round of Tic-Tac-Toe. 2 | -------------------------------------------------------------------------------- /tictactoe/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/tictactoe/solution.py -------------------------------------------------------------------------------- /tictactoe/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/tictactoe/test.py -------------------------------------------------------------------------------- /tictactoe/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/tictactoe/unit.py -------------------------------------------------------------------------------- /transpose/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/transpose/Makefile -------------------------------------------------------------------------------- /transpose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/transpose/README.md -------------------------------------------------------------------------------- /transpose/mk-out.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/transpose/mk-out.sh -------------------------------------------------------------------------------- /transpose/precis.txt: -------------------------------------------------------------------------------- 1 | Transpose music in ABC notation by a given interval. 2 | -------------------------------------------------------------------------------- /transpose/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/transpose/solution.py -------------------------------------------------------------------------------- /transpose/songs/legacy.abc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/transpose/songs/legacy.abc -------------------------------------------------------------------------------- /transpose/songs/legacy.abc.-5.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/transpose/songs/legacy.abc.-5.out -------------------------------------------------------------------------------- /transpose/songs/legacy.abc.2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/transpose/songs/legacy.abc.2.out -------------------------------------------------------------------------------- /transpose/songs/legacy.abc.4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/transpose/songs/legacy.abc.4.out -------------------------------------------------------------------------------- /transpose/songs/paddy.abc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/transpose/songs/paddy.abc -------------------------------------------------------------------------------- /transpose/songs/paddy.abc.-5.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/transpose/songs/paddy.abc.-5.out -------------------------------------------------------------------------------- /transpose/songs/paddy.abc.2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/transpose/songs/paddy.abc.2.out -------------------------------------------------------------------------------- /transpose/songs/paddy.abc.4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/transpose/songs/paddy.abc.4.out -------------------------------------------------------------------------------- /transpose/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/transpose/test.py -------------------------------------------------------------------------------- /war/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/war/Makefile -------------------------------------------------------------------------------- /war/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/war/README.md -------------------------------------------------------------------------------- /war/precis.txt: -------------------------------------------------------------------------------- 1 | Play the War card game. 2 | -------------------------------------------------------------------------------- /war/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/war/solution.py -------------------------------------------------------------------------------- /war/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/war/test.py -------------------------------------------------------------------------------- /word_search/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/word_search/Makefile -------------------------------------------------------------------------------- /word_search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/word_search/README.md -------------------------------------------------------------------------------- /word_search/bad_grid.txt: -------------------------------------------------------------------------------- 1 | ABC 2 | DEFG 3 | HIJ 4 | 5 | XYZ 6 | -------------------------------------------------------------------------------- /word_search/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/word_search/discussion.md -------------------------------------------------------------------------------- /word_search/ice_cream.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/word_search/ice_cream.txt -------------------------------------------------------------------------------- /word_search/precis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/word_search/precis.txt -------------------------------------------------------------------------------- /word_search/puzzle01.txt: -------------------------------------------------------------------------------- 1 | ABCD 2 | 3 | BC 4 | -------------------------------------------------------------------------------- /word_search/puzzle02.txt: -------------------------------------------------------------------------------- 1 | ABC 2 | 3 | BA 4 | -------------------------------------------------------------------------------- /word_search/puzzle03.txt: -------------------------------------------------------------------------------- 1 | ABC 2 | DEF 3 | GHI 4 | 5 | BEH 6 | -------------------------------------------------------------------------------- /word_search/puzzle04.txt: -------------------------------------------------------------------------------- 1 | ABC 2 | DEF 3 | GHI 4 | 5 | IFC 6 | -------------------------------------------------------------------------------- /word_search/puzzle05.txt: -------------------------------------------------------------------------------- 1 | ABC 2 | DEF 3 | GHI 4 | 5 | AEI 6 | -------------------------------------------------------------------------------- /word_search/puzzle06.txt: -------------------------------------------------------------------------------- 1 | ABC 2 | DEF 3 | GHI 4 | 5 | DH 6 | -------------------------------------------------------------------------------- /word_search/puzzle07.txt: -------------------------------------------------------------------------------- 1 | ABC 2 | DEF 3 | GHI 4 | 5 | FB 6 | -------------------------------------------------------------------------------- /word_search/puzzle08.txt: -------------------------------------------------------------------------------- 1 | ABC 2 | DEF 3 | GHI 4 | 5 | EC 6 | -------------------------------------------------------------------------------- /word_search/puzzle09.txt: -------------------------------------------------------------------------------- 1 | ABC 2 | DEF 3 | GHI 4 | 5 | FH 6 | -------------------------------------------------------------------------------- /word_search/shapes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/word_search/shapes.txt -------------------------------------------------------------------------------- /word_search/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/word_search/solution.py -------------------------------------------------------------------------------- /word_search/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyclark/more_tiny_python_projects/HEAD/word_search/test.py --------------------------------------------------------------------------------