Skip to content

Instantly share code, notes, and snippets.

@swuecho
Created August 10, 2012 14:58
Show Gist options
  • Select an option

  • Save swuecho/3314790 to your computer and use it in GitHub Desktop.

Select an option

Save swuecho/3314790 to your computer and use it in GitHub Desktop.
sub min_scalar(@xs,@ys) {
[+] @xs.sort <<*>> @ys.sort.reverse;
}
# test
say min_scalar([1..5],[1,0,1,0,1]); # 6
say min_scalar([1,3,-5],[-2,4,1]); # -25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment