32 lines
493 B
Go
32 lines
493 B
Go
|
//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 MergeChans(chs ...<-chan int) <-chan int {
|
||
|
panic("implement me")
|
||
|
}
|
||
|
|
||
|
func IsHermitianMatrix(m [][]int) bool {
|
||
|
panic("implement me")
|
||
|
}
|