fix: slice the numbers exercise

This commit is contained in:
Inanc Gumus
2019-02-16 11:09:34 +03:00
parent 9fe62cf7ef
commit 1dab45cd57
2 changed files with 2 additions and 2 deletions

View File

@ -36,5 +36,5 @@ func main() {
fmt.Println("last 2 :", nums[len(nums)-2:])
fmt.Println("evens last 1:", evens[len(evens)-1:])
fmt.Println("odds last 2 :", evens[len(evens)-2:])
fmt.Println("odds last 2 :", odds[len(odds)-2:])
}