competitive-cpp

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub fiore57/competitive-cpp

:warning: others/didj.cpp

Back to top page

Code

constexpr int di[8] = {1, 0, -1, 0, 1, -1, -1, 1};
constexpr int dj[8] = {0, 1, 0, -1, 1, 1, -1, -1};

#line 1 "others/didj.cpp"
constexpr int di[8] = {1, 0, -1, 0, 1, -1, -1, 1};
constexpr int dj[8] = {0, 1, 0, -1, 1, 1, -1, -1};

Back to top page