I want to find the 2nd and 4th saturday for a month to check bank holiday. I have added check for sundays for now. Currently this how my function looks with date as input in implemented in Go
func IsHoliday(date time.Time) bool {
return date.Weekday() == time.Sunday
}
This is how implemented function find alternate saturdays. It finds the first saturday date, then compares the input date with 2nd and 4th saturdays.
Then integrated it with main IsHoliday function: