Browse Source

Update README.md

1274-oddlength
Hamza elkhatri 2 years ago committed by David Mata
parent
commit
ad23781b3b
  1. 12
      subjects/leapyear/README.md

12
subjects/leapyear/README.md

@ -2,7 +2,7 @@
### Instructions ### 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 a year divisible by 4, but not by 100.
- A leap year is also divisible by 400. - A leap year is also divisible by 400.
- If the number is not positive, return false - 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 ### Expected function
```go ```go
func isLeap(year int)bool{ func LeapYear(year int)bool{
// your code here // your code here
} }
``` ```
@ -22,10 +22,10 @@ package main
import "fmt" import "fmt"
func main(){ func main(){
fmt.Println(isLeap(2020)) fmt.Println(LeapYear(2020))
fmt.Println(isLeap(2021)) fmt.Println(LeapYear(2021))
fmt.Println(isLeap(2022)) fmt.Println(LeapYear(2022))
fmt.Println(isLeap(-10)) fmt.Println(LeapYear(-10))
} }
``` ```
and the output should be: and the output should be:

Loading…
Cancel
Save