Quick actions

cmd+k|ctrl+k

Navigation

Languages

Colin's Challenge

Snippet info

Language

Raku

Visibility

public

Author

seaker

Created

2023-08-24T10:56:12.877007Z

Updated

2023-08-24T11:11:02.738342Z

# URL: https://emacs.ch/@fosskers/110930567248002312

my %banned = <
    for and the with from that your git bin this not svn
    who can you like into all more one any over non them
    are very when about yet many its also most lets just
>.Set;

put $*IN.slurp
    .trans(Q«-_!,:/()[].'+?=*\"#$%&{}|;~\\<>@`^».comb => ' ')
    .lc
    .words
    .grep({ !/^\d+$/ and .chars ≥ 3 and !%banned{$_} })
    .unique
;
INFO