shad-go/hotelbusiness/hotels.go
2022-03-15 23:49:56 +03:00

17 lines
219 B
Go

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