Created
December 14, 2019 11:29
-
-
Save Matojeje/08f8a18d3438b49d923786d15e5d6662 to your computer and use it in GitHub Desktop.
Leap years codegolf - prints all leap years from 1800 to 2400 inclusive
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
for(i=1800;i<2401;i++){!(i%4)&&(i%100)^!(i%400)?print(i):0} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment