aboutsummaryrefslogtreecommitdiff
path: root/challenge-279/feng-chang/raku/ch-1.raku
blob: 29c670a64bd1a4355e507b293ec603a72e5fecbb (plain)
1
2
3
4
5
#!/bin/env raku

unit sub MAIN(Str:D $letters, Str:D $weights);

put ($letters.comb(/<[A..Za..z]>/) Z=> +«$weights.comb(/\d+/)).sort(*.value)».key.join;