algorithm

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

View the Project on GitHub satashun/algorithm

:warning: cpp_src/other/DigitalClock.cpp

Code

// ** 315
// digital clock, horizontal -> vertical
const int DIGIT[10][7] = {{1, 0, 1, 1, 1, 1, 1}, {0, 0, 0, 0, 1, 0, 1},
                          {1, 1, 1, 0, 1, 1, 0}, {1, 1, 1, 0, 1, 0, 1},
                          {0, 1, 0, 1, 1, 0, 1}, {1, 1, 1, 1, 0, 0, 1},
                          {1, 1, 1, 1, 0, 1, 1}, {1, 0, 0, 1, 1, 0, 1},
                          {1, 1, 1, 1, 1, 1, 1}, {1, 1, 1, 1, 1, 0, 1}};
Back to top page