Created
February 22, 2017 17:42
-
-
Save zoffixznet/fb635966fdafa9792b25a98e8e05d4f9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
constant N = 10000; | |
constant DIV = 5; | |
constant CORES = 32; | |
constant batch = N div CORES; | |
(0, batch … N, N).rotor(2 => -1).flat.map({$^a^..$^b}).race(:batch).map(*.grep(* %% DIV).sum).sum.say; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment