aboutsummaryrefslogtreecommitdiff
path: root/challenge-276/feng-chang/raku/ch-2a.raku
blob: fd80e958877e4492a598df8d1dcb02b2dd453d3d (plain)
1
2
3
4
5
6
7
#!/bin/env raku

unit sub MAIN(*@ints);

my %b = @ints.Bag;
my %s = (+«%b.max(:by({.value}), :k)).Set;
put +@ints.grep(%s);