shad-go/hotelbusiness/hotels.go

18 lines
218 B
Go
Raw Normal View History

2020-02-24 19:54:48 +00:00
// +build !solution
package hotelbusiness
type Guest struct {
CheckInDate int
CheckOutDate int
}
type Load struct {
StartDate int
GuestCount int
}
func ComputeLoad(guests []Guest) []Load {
return []Load{}
}