Skip to content

Commit b34dcf8

Browse files
yanglbmeactions-user
authored andcommitted
style: prettify code
1 parent d55ab2f commit b34dcf8

File tree

1 file changed

+1
-1
lines changed
  • lcof/面试题13. 机器人的运动范围

1 file changed

+1
-1
lines changed

lcof/面试题13. 机器人的运动范围/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public:
196196

197197
int moving(int row, int col, vector<vector<int>>& arr, int i, int j, int target) {
198198
int count = 0;
199-
if (checksum(i, j, target)
199+
if (checksum(i, j, target)
200200
&& i>=0 && i < row && j>=0 && j < col
201201
&& arr[i][j] == 0) {
202202
arr[i][j] = 1;

0 commit comments

Comments
 (0)