-
Notifications
You must be signed in to change notification settings - Fork 0
/
MazeQuiz.html
2 lines (2 loc) · 1.64 KB
/
MazeQuiz.html
1
2
<!DOCTYPE html><html><head lang="en"><meta charset="UTF-8"><title>Maze Quiz - Porizi Technologies</title><script>var pz_server = 'http://mazequiz.herokuapp.com';</script><script src="http://code.jquery.com/jquery-1.11.3.min.js"></script><link rel="stylesheet" type="text/css" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"><link rel="stylesheet" type="text/css" href="http://mazequiz.herokuapp.com/css/maze-quiz.css"><style>body { background: url("http://mazequiz.herokuapp.com/img/symphony.png"); }</style></head><body><div class="container text-center"><h3>Maze Quiz</h3><p>Your goal is to write some code that gets the player (red dot) from the starting point (grey box) to the end point (green box) for any given maze.</p><div class="pz-maze-quiz-container">loading...</div></div><div class="container"><div class="row"><div class="col-xs-11 col-xs-offset-1"><b>Notes</b><ul><li>There is always a path that leads from the "start" to the "end".</li><li>Your solution doesn't have to find the shortest path to the end but it should always be
finding its way to the end.</li><li>Random walking solutions are not accepted - your code should be making sure that the player reaches the end.</li><li>You can use only plain javascript for solving the problem. No other external libraries can be used.</li><li>Check out your_code.js for an example usage of the MazeAPI.</li><li>You have to solve the exercise by yourself without any additional help from somebody else.</li></ul></div></div></div><script src="http://mazequiz.herokuapp.com/js/bundle.js" type="text/javascript"></script><script src="your_code.js" type="text/javascript"></script></body></html>