Skip to content

Instantly share code, notes, and snippets.

@DPS0340
Created August 1, 2019 03:41
Show Gist options
  • Select an option

  • Save DPS0340/42c1792fa2b566ff0af156cb3b55c56b to your computer and use it in GitHub Desktop.

Select an option

Save DPS0340/42c1792fa2b566ff0af156cb3b55c56b to your computer and use it in GitHub Desktop.
leap year scala
for (year <- 1999 to 2019 if year % 4 == 0 if ((year % 100 != 0) || (year % 400 == 0))) println(year)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment