-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (33 loc) · 995 Bytes
/
index.html
File metadata and controls
39 lines (33 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<html>
<head>
<script src="assets/jquery-2.1.0.js"> </script>
<link rel="stylesheet" type="text/css" href="app/css/micro_machines.css">
</head>
<div class="banner">
<h1> MICROMACHINES </h1>
</div>
<div class="track">
</div>
<div class="task">
<h3> Requirements: </h3>
<p>You have a micro machine car, you place it on a 10x10 track at position [0,0] facing North.
Given a set of instructions, the micromachine should navigate the track without 'falling off'.
Satisfy the following instruction sets:
</p>
<ul>
<li> [ 3R3R3 ] position: [0,3]S </li>
<li> [ R3L1L2] position: [1,1]W </li>
<li> [ 9R9R2 ] position: 'Off the Track!' </li>
</ul>
</div>
<div class="controls">
<form>
<label> Commands: </label>
<input type='text' class="command">
<button> Go! </button>
<br> <br>
<label> Current Position: </label>
<input type='text' class="command">
</form>
</div>
</html>