Skip to content

Commit fb1f253

Browse files
authored
Update knight-dialer.cpp
1 parent e581779 commit fb1f253

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

C++/knight-dialer.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44
class Solution {
55
public:
66
int knightDialer(int N) {
7-
if (N == 1) {
8-
return 10;
9-
}
10-
117
vector<vector<int>> T = {{0, 0, 0, 0, 1, 0, 1, 0, 0, 0},
128
{0, 0, 0, 0, 0, 0, 1, 0, 1, 0},
139
{0, 0, 0, 0, 0, 0, 0, 1, 0, 1},

0 commit comments

Comments
 (0)