Skip to content

Instantly share code, notes, and snippets.

@Matojeje
Created December 14, 2019 11:29
Show Gist options
  • Save Matojeje/08f8a18d3438b49d923786d15e5d6662 to your computer and use it in GitHub Desktop.
Save Matojeje/08f8a18d3438b49d923786d15e5d6662 to your computer and use it in GitHub Desktop.
Leap years codegolf - prints all leap years from 1800 to 2400 inclusive
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