- ScheduledWalk/창섭&상규 . . . . 10 matches
* 자취를 남길 수 있다.(BoardArray, TraceCount, LeaveTrace)
int **BoardArray;
BoardArray = new int* [size.height];
BoardArray[i] = new int [size.width];
BoardArray[i][j] = 0;
delete[] BoardArray[i];
delete[] BoardArray;
BoardArray[location.y][location.x]++;
if (BoardArray[i][j] == 0)
cout << board->BoardArray[h][w] << " ";
- ScheduledWalk/재니&영동 . . . . 7 matches
int* BoardArray;
BoardArray = new int[row * col + row];
BoardArray[i * row + j] = 0;
BoardArray[y * maxRow + x]++;
if (BoardArray[j] != 0)
cout << BoardArray[i * maxRow + j];
count += BoardArray[i * maxRow + j];
- ScheduledWalk/석천 . . . . 1 match
void testScheduledWalking(int maxRow, int maxCol, IntPair startRoachPosition, PSTR journey, int expectedTotalMoveCount, int* expectedBoardArray);
Found 3 matching pages out of 7555 total pages (5000 pages are searched)
You can also click here to search title.