5 lines
118 B
Go
5 lines
118 B
Go
package binarysearch
|
|
|
|
func SearchInts(list []int, key int) int {
|
|
panic("Please implement the SearchInts function")
|
|
}
|