mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-05 00:25:22 +08:00
8 lines
183 B
Go
8 lines
183 B
Go
package leetcode
|
|
|
|
import "time"
|
|
|
|
func dayOfTheWeek(day int, month int, year int) string {
|
|
return time.Date(year, time.Month(month), day, 0, 0, 0, 0, time.Local).Weekday().String()
|
|
}
|