15 lines
153 B
Go
15 lines
153 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"gotest/consecutive"
|
|
)
|
|
|
|
func main() {
|
|
|
|
array := []int{1, 2, 4, 3, 6, 5}
|
|
|
|
fmt.Println(consecutive.Consecutive(array))
|
|
|
|
}
|