shad-go/hotelbusiness/hotels.go
2020-02-24 22:54:48 +03:00

17 lines
218 B
Go

// +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{}
}