Write a script to test whether a year number is for a leap year or not.
eg. x = 1884 output = 1
eg. x = 3 output = 0
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers268
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6679 Solvers
-
How to find the position of an element in a vector without using the find function
2812 Solvers
-
Given a matrix, swap the 2nd & 3rd columns
1256 Solvers
-
508 Solvers
-
Flip the vector from right to left
10662 Solvers
More from this Author28
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The test cases are too trivial. E.g. 2000 was a leap year, but 1900 or 1800 was not... (At least after the Gregorian calendar reform)