Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
1
Task/Leap-year/Excel/leap-year-1.excel
Normal file
1
Task/Leap-year/Excel/leap-year-1.excel
Normal file
|
|
@ -0,0 +1 @@
|
|||
=IF(OR(NOT(MOD(A1,400)),AND(NOT(MOD(A1,4)),MOD(A1,100))),"Leap Year","Not a Leap Year")
|
||||
10
Task/Leap-year/Excel/leap-year-2.excel
Normal file
10
Task/Leap-year/Excel/leap-year-2.excel
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
ISLEAPYEAR
|
||||
=LAMBDA(y,
|
||||
OR(
|
||||
0 = MOD(y, 400),
|
||||
AND(
|
||||
0 = MOD(y, 4),
|
||||
0 <> MOD(y, 100)
|
||||
)
|
||||
)
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue