aboutsummaryrefslogtreecommitdiff
path: root/challenge-161/ryan-thompson/README.md
blob: 499e7790534e0bcdd270d83b998f4d32c76b03bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# 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)