Solution Review: Map the Days

This lesson discusses the solution to the challenge given in the previous lesson.

package main
import (
"fmt"
)
var Days = map[int]string{
1:"Monday",
2:"Tuesday",
3: "Wednesday",
4: "Thursday",
5: "Friday",
6: "Saturday",
7: "Sunday"}
func findDay(n int) string {
val,isPresent := (Days[n])
if isPresent{ // what if key is not present
return val
}else{
return "Wrong Key"} // return wrong key if invalid key
}
func main() {
n := 4
fmt.Println(n,":",findDay(n))
n = 0
fmt.Println(n,":",findDay(n))
}

Get hands-on with 1200+ tech skills courses.