Skip to content

Instantly share code, notes, and snippets.

@colomon
Created December 12, 2019 15:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colomon/2149dda884f27551005f558ba89bf54e to your computer and use it in GitHub Desktop.
Save colomon/2149dda884f27551005f558ba89bf54e to your computer and use it in GitHub Desktop.
sub value($word) {
[+] $word.lc.comb.map({ $_.ord - "a".ord + 1 });
}
my @words = "/usr/share/dict/words".IO.lines;
for @words.grep({ value($_) == 100 }) -> $dollar-word {
say $dollar-word;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment