This commit is contained in:
VicRen
2021-01-09 13:41:17 +08:00
parent 7cc04c9043
commit 44762b864e
2 changed files with 44 additions and 0 deletions

16
20210109/main.go Normal file
View File

@@ -0,0 +1,16 @@
package main
func main() {
}
func search(n int, nums []int) int {
l := len(nums)
c := l / 2
for {
if c == 0 {
}
}
return -1
}