Last active
February 13, 2017 00:43
-
-
Save evictor/83ec6c024031f7a7a47734d019e8d906 to your computer and use it in GitHub Desktop.
This file contains 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
val divisors = 20 to 3 by -1 | |
(2520 to Int.MaxValue by 2).find(x => divisors.forall(x % _ == 0)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment