我正在通过代码战工作,而且我遇到了mazerunner(https://www.codewars.com/kata/maze-runner/train/javascript)我被困了大约2天!
function mazeRunner(maze, directions) {
//find start value
var x = 0; //x position of the start point
var y = 0; //y position of the start point
for (var j = 0 ; j < maze.length ; j++){
if (maze[j].indexOf(2) != -1){
x = j;
y = maze[j].indexOf(2)
}
} // end of starting position forloop
console.log(x + ', ' + y)
for (var turn = 0 ; turn < directions.length ; turn++){
if (directions[turn] == "N"){
x -= 1;
}
if (directions[turn] == "S"){
x += 1;
}
if (directions[turn] == "E"){
y += 1;
}
if (directions[turn] == "W"){
y -= 1;
}
if (maze[x][y] === 1){
return 'Dead';
}else if (maze[x][y] === 3){
return 'Finish';
}
if (maze[x] === undefined || maze[y] === undefined){
return 'Dead';
}
}
return 'Lost';
}
当我运行它时,它适用于大多数情况,但是在最后一个情况下我得到以下错误
TypeError: Cannot read property '3' of undefined
at mazeRunner
at /home/codewarrior/index.js:87:19
at /home/codewarrior/index.js:155:5
at Object.handleError
任何帮助将不胜感激!我把头发拉过这个!
答案 0 :(得分:1)
您的解决方案的问题是,在移动之后,您只需检查maze[x][y]
在失败的测试中,maze[x]
将在某个时刻undefined
(向南移动一段时间)。我想同一点y
将是3
,因此错误Cannot read property '3' of undefined
为了避免这种情况,在尝试访问坐标之前,应该向上移动测试未定义的代码:
// move this as first check
if (maze[x] === undefined || maze[y] === undefined){
return 'Dead';
}