diff options
| author | James Smith <js5@sanger.ac.uk> | 2022-01-04 17:28:19 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-04 17:28:19 +0000 |
| commit | 962b29f06c9b542023bf0c377830f3c97c27e5be (patch) | |
| tree | d0af139f70e4e1622c69511aef6301dabe059e08 | |
| parent | df081f42009611d870879c4e69e17ea248f06a8d (diff) | |
| download | perlweeklychallenge-club-962b29f06c9b542023bf0c377830f3c97c27e5be.tar.gz perlweeklychallenge-club-962b29f06c9b542023bf0c377830f3c97c27e5be.tar.bz2 perlweeklychallenge-club-962b29f06c9b542023bf0c377830f3c97c27e5be.zip | |
Update README.md
| -rw-r--r-- | challenge-146/james-smith/README.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/challenge-146/james-smith/README.md b/challenge-146/james-smith/README.md index d40944cdb2..49035b9035 100644 --- a/challenge-146/james-smith/README.md +++ b/challenge-146/james-smith/README.md @@ -44,6 +44,24 @@ so the last element is the 10,001st prime. ***Can't really describe this - best to look at the image on the website at https://theweeklychallenge.org/blog/perl-weekly-challenge-146/.*** +``` + 1/1 + | + +-------------------+-------------------+ + 1/2 2/1 + | | + +---------+---------+ +---------+---------+ + | | | | + 1/3 3/2 2/3 3/1 + | | | | + +----+----+ +----+----+ +----+----+ +----+----+ + | | | | | | | | + 1/4 4/3 3/5 5/2 2/5 5/3 3/4 4/1 + | | | | | | | | + +-+-+ +-+-+ +-+-+ +-+-+ +-+-+ +-+-+ +-+-+ +-+-+ + | | | | | | | | | | | | | | | | +1/5 5/4 4/7 7/3 3/8 8/5 5/7 7/2 2/7 7/5 5/8 8/3 3/7 7/4 4/5 5/1 +``` ## The solution We notice that: |
