Compare commits
1 Commits
08f7db87ad
...
a3b2c6603e
Author | SHA1 | Date | |
---|---|---|---|
a3b2c6603e |
@ -7,6 +7,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
// directions
|
||||||
W = iota
|
W = iota
|
||||||
N
|
N
|
||||||
E
|
E
|
||||||
@ -14,14 +15,14 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
cur int
|
// current value
|
||||||
x int
|
cur int
|
||||||
y int
|
// current position
|
||||||
dir int
|
x, y int
|
||||||
xmax int
|
// current direction
|
||||||
xmin int
|
dir int
|
||||||
ymax int
|
// grid bounds
|
||||||
ymin int
|
xmax, xmin, ymax, ymin int
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
@ -29,15 +30,13 @@ func main() {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
fmt.Println(n)
|
// move current position in grid and compute change direction, expand grid
|
||||||
|
|
||||||
// create cell and compute change direction, expand grid
|
|
||||||
for cur < n {
|
for cur < n {
|
||||||
nextMove()
|
nextMove()
|
||||||
fmt.Println(cur, x, y)
|
// fmt.Println(cur, x, y)
|
||||||
}
|
}
|
||||||
|
// distance to position
|
||||||
fmt.Println("\n", Abs(x)+Abs(y))
|
fmt.Println(Abs(x) + Abs(y))
|
||||||
}
|
}
|
||||||
|
|
||||||
func nextMove() {
|
func nextMove() {
|
||||||
|
Loading…
Reference in New Issue
Block a user