##Leap Year Kata
Solved this Kata in pairs using TDD. We want to know if a year is a Leap Year. If this year is Leap year we will add an extra day on February.
#####Guidelines:
- All years divisible by 400 are leap year.
- All years divisible by 100 but not by 400 are NOT lear years.
- All years divisible by 4 not by 100 are leap years.
- All years not divisible by 4 are not leap years.
Language use is Java 11. JUnit version 5.4 with maven.