# Ryan Thompson ## Week 161 Solutions ### Task 1 › Abecedarian Words * [Perl](perl/ch-1.pl) #### Synopsis ./ch-1.pl [--dict=path/to/dict.txt --benchmark --test] * `--benchmark` - Runs benchmarking on every different solution * `--test` - Unit tests showing all solutions produce equal results * `--dict=file` - Alternate dictionary file to use (uses `../../../data/dictionary.txt` by default) ### Task 2 › Pangrams * [Perl](perl/ch-2.pl) #### Usage ./ch-2.pl [--dict=path/to/dict.txt --min=length] * `--dict=file` - Alternate dictionary file to use (default: `../../../data/dictionary.txt`) * `--min=length` - Minimum word length (default: 4) ## Blogs * [Abecedarian Words](https://ry.ca/2022/04/abecedarian-words) * [Pangrams](https://ry.ca/2022/04/pangrams)