Skip to content

Commit d052cd0

Browse files
committed
direction size added
1 parent 3f906fb commit d052cd0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

directions.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
// 8 - D
2+
const int DSIZE = 8;
23
array<int,8>X{-1,-1,-1,0,0 ,1,1,1};
34
array<int,8>Y{-1, 0, 1,1,-1,1,-1,0};
45

56

67
// 4 - D
78

9+
const int DSIZE = 4;
810
array<int,4>X{-1,1,0,0};
911
array<int,4>Y{0,0,-1,1};
1012

0 commit comments

Comments
 (0)