Browse Source

Need less directions

Piotr Czajkowski 2 weeks ago
parent
commit
8cf0742f32
1 changed files with 1 additions and 1 deletions
  1. 1 1
      06/code.go

+ 1 - 1
06/code.go

@@ -8,7 +8,7 @@ import (
 )
 
 var directions [][]int = [][]int{
-	{0, 1}, {1, 0}, {0, -1}, {-1, 0}, {1, 1}, {-1, -1}, {1, -1}, {-1, 1},
+	{0, 1}, {1, 0}, {0, -1}, {-1, 0},
 }
 
 type Point struct {