Ringkasan Tantangan
Given a character, determine if its 8-bit binary representation can be found in the following grid, horizontally or vertically in either direction:
Given a character, determine if its 8-bit binary representation can be found in the following grid, horizontally or vertically in either direction:
0 1 0 0 0 0 0 1
0 1 1 0 1 1 1 1
0 1 0 0 0 1 0 0
0 1 1 0 0 1 0 1
0 1 0 1 0 0 1 0
0 1 0 1 0 1 0 0
0 1 1 0 1 0 0 0
1 0 1 0 1 1 1 0
For example, "A" has the binary representation 01000001, which appears in the first row from left to right.