Skip to content

Commit 7e89a5b

Browse files
committed
add squard of robotics
1 parent 94cfb39 commit 7e89a5b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

squad_of_robotic.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
def final(top_right, position):
3+
coord = ["N", "E", "S", "W"]
4+
for key, value in position.items():
5+
current_coord, coord_index = key[-1],
6+
x, y = key[0], key[1]
7+
8+
9+
10+
11+
top_right = "55"
12+
position = {
13+
"12N": "LMLMLMLMM",
14+
"33E": "MMRMMRMRRM"
15+
}
16+
print(final(top_right, position))

0 commit comments

Comments
 (0)