aboutsummaryrefslogtreecommitdiff
path: root/challenge-263/asherbhs/raku/ch-1.raku
blob: b65a83d575f04c1bb8416492b09e8209eb1e3210 (plain)
1
2
3
4
5
6
7
sub target-index(Int:D @ints, Int:D $k --> List) {
	@ints.sort.grep($k, :k).list
}

say target-index Array[Int].new(1, 5, 3, 2, 4, 2), 2;
say target-index Array[Int].new(1, 2, 4, 3, 5),    6;
say target-index Array[Int].new(5, 3, 2, 4, 2, 1), 4;