index
:
exercism
master
Collection of solutions to exercises from exercism.io.
Federico Igne
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
rust
/
leap
/
src
/
lib.rs
blob: 1b40300d7228cb53225591c27cb8614498763c95 (
plain
) (
blame
)
1
2
3
pub
fn
is_leap_year
(
year
:
u64
)
->
bool
{
year
%
4
==
0
&&
year
%
100
!=
0
||
year
%
400
==
0
}