Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
10
Task/Long-year/AppleScript/long-year-2.applescript
Normal file
10
Task/Long-year/AppleScript/long-year-2.applescript
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
on isLongYear(y)
|
||||
return (y mod 400 is in {4, 9, 15, 20, 26, 32, 37, 43, 48, 54, 60, 65, 71, 76, 82, 88, 93, 99, 105, 111, 116, 122, 128, 133, 139, 144, 150, 156, 161, 167, 172, 178, 184, 189, 195, 201, 207, 212, 218, 224, 229, 235, 240, 246, 252, 257, 263, 268, 274, 280, 285, 291, 296, 303, 308, 314, 320, 325, 331, 336, 342, 348, 353, 359, 364, 370, 376, 381, 387, 392, 398})
|
||||
end isLongYear
|
||||
|
||||
set longYears to {}
|
||||
repeat with y from 2001 to 2100
|
||||
if (isLongYear(y)) then set end of longYears to y
|
||||
end repeat
|
||||
|
||||
return longYears
|
||||
Loading…
Add table
Add a link
Reference in a new issue