Last active
December 4, 2015 09:01
-
-
Save tjconcept/d35997d9fa19a2529ea1 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
Array.from({ length: 1000 }, (v, k) => k) | |
.filter(x => x%3 === 0 || x%5 === 0) | |
.reduce((t, x) => t + x, 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment