elma_developer_test/main.go

13 lines
135 B
Go
Raw Normal View History

2022-09-16 13:48:36 +03:00
package main
import (
"fmt"
"gotest/missing"
)
2022-09-16 13:48:36 +03:00
func main() {
fmt.Print(missing.FindNumber([]int{1, 3, 5, 2, 6, 7, -9, 8, 4}))
2022-09-16 13:48:36 +03:00
}