You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
407 B
25 lines
407 B
11 months ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"bufio"
|
||
|
"strconv"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
var spaceReplacer = strings.NewReplacer("\t", "", " ", "")
|
||
|
|
||
|
func scanints(str string) []int {
|
||
|
ints := make([]int, 0)
|
||
|
scanner := bufio.NewScanner(strings.NewReader(str))
|
||
|
scanner.Split(bufio.ScanWords)
|
||
|
|
||
|
for scanner.Scan() {
|
||
|
val, err := strconv.Atoi(scanner.Text())
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
ints = append(ints, val)
|
||
|
}
|
||
|
return ints
|
||
|
}
|