Update README.md

This commit is contained in:
Hamza elkhatri 2022-06-13 11:43:07 +01:00 committed by David Mata
parent 1fb9df9b5b
commit ad23781b3b
1 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
### Instructions
Write a function named `isLeap(int)` that takes a year as a parameter and returns true if the year is a leap year and false otherwise.
Write a function named `LeapYear(int)` that takes a year as a parameter and returns true if the year is a leap year and false otherwise.
- A leap year is a year divisible by 4, but not by 100.
- A leap year is also divisible by 400.
- If the number is not positive, return false
@ -10,7 +10,7 @@ Write a function named `isLeap(int)` that takes a year as a parameter and return
### Expected function
```go
func isLeap(year int)bool{
func LeapYear(year int)bool{
// your code here
}
```
@ -22,10 +22,10 @@ package main
import "fmt"
func main(){
fmt.Println(isLeap(2020))
fmt.Println(isLeap(2021))
fmt.Println(isLeap(2022))
fmt.Println(isLeap(-10))
fmt.Println(LeapYear(2020))
fmt.Println(LeapYear(2021))
fmt.Println(LeapYear(2022))
fmt.Println(LeapYear(-10))
}
```
and the output should be: