18 lines
239 B
Go
18 lines
239 B
Go
//go:build !solution
|
|
// +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{}
|
|
}
|