MCPcopy Index your code
hub / github.com/doocs/leetcode / cleanRoom

Method cleanRoom

solution/0400-0499/0489.Robot Room Cleaner/Solution.java:24–27  ·  view source on GitHub ↗
(Robot robot)

Source from the content-addressed store, hash-verified

22 private Robot robot;
23
24 public void cleanRoom(Robot robot) {
25 this.robot = robot;
26 dfs(0, 0, 0);
27 }
28
29 private void dfs(int i, int j, int d) {
30 robot.clean();

Callers

nothing calls this directly

Calls 1

dfsMethod · 0.95

Tested by

no test coverage detected