DaysInYearDaysInYear#func DaysInYear(year int) intReturns the number of days in leap years and peace years:gtime.DaysInYear(2020) // 366gtime.DaysInYear(2021) // 365Copy