diff options
| author | James Smith <baggy@baggy.me.uk> | 2021-06-26 00:08:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-26 00:08:05 +0100 |
| commit | 73b584b5b19feabeeff661c279437fa1de22772c (patch) | |
| tree | 556f9b46cbedf6c854c13374b762697b4782ada5 | |
| parent | 1657da96db82d5b391324c9cda712875e318daa0 (diff) | |
| download | perlweeklychallenge-club-73b584b5b19feabeeff661c279437fa1de22772c.tar.gz perlweeklychallenge-club-73b584b5b19feabeeff661c279437fa1de22772c.tar.bz2 perlweeklychallenge-club-73b584b5b19feabeeff661c279437fa1de22772c.zip | |
Update README.md
| -rw-r--r-- | challenge-118/james-smith/README.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/challenge-118/james-smith/README.md b/challenge-118/james-smith/README.md index df35e5d830..1d9b8c54b9 100644 --- a/challenge-118/james-smith/README.md +++ b/challenge-118/james-smith/README.md @@ -237,6 +237,26 @@ sub show_rt { } ``` +### The output... + +``` +a8 c7 e6* c5 b3* c1 a2* c3 b1* d2 c4* b2* +``` + +``` + a b c d e f g h + 8 0* * * * * * * * 8 + 7 * * 1* * * * * * 7 + 6 * * * * 2x * * * 6 + 5 * * 3 * * * * * 5 + 4 * * 10x * * * * * 4 + 3 * 4x 7* * * * * * 3 + 2 6x 11x * 9* * * * * 2 + 1 * 8x 5* * * * * * 1 + a b c d e f g h + +``` + ## Improvement 1 - reduce function calls There is one place where the code could gain a bit of speed. The |
