Воробьев Егор Александрович, 419/2 (КФ) VirtualTurtle 10097
Даулетбек Досай 404 группа (КФ) VirtualTurtle 10962
n1def turtle(coord, direction):n1def turtle(start_pos, orientation):
2    x, y = coord2    pos_x, pos_y = start_pos
3    while True:3    while True:
t4        command = (yield (x, y))t4        action = (yield (pos_x, pos_y))
5        if command == 'f':5        if action == 'f':
6            if direction == 0:6            if orientation == 0:
7                x += 17                pos_x += 1
8            elif direction == 1:8            elif orientation == 1:
9                y += 19                pos_y += 1
10            elif direction == 2:10            elif orientation == 2:
11                x -= 111                pos_x -= 1
12            elif direction == 3:12            elif orientation == 3:
13                y -= 113                pos_y -= 1
14        elif command == 'l':14        elif action == 'l':
15            direction = (direction + 1) % 415            orientation = (orientation + 1) % 4
16        elif command == 'r':16        elif action == 'r':
17            direction = (direction - 1) % 417            orientation = (orientation - 1) % 4
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op