shad-go/genericsum/genericsum.go

28 lines
419 B
Go
Raw Normal View History

2022-04-06 12:52:32 +00:00
//go:build !solution
package genericsum
func Min(a, b int) int {
panic("implement me")
}
func SortSlice(a []int) {
panic("implement me")
}
func MapsEqual(a, b map[int]int) bool {
panic("implement me")
}
func SliceContains(s []int, v int) bool {
panic("implement me")
}
func MergeChans(chs ...<-chan int) <-chan int {
panic("implement me")
}
func IsHermitianMatrix(m [][]int) bool {
panic("implement me")
}