forked from kpbochenek/empireofcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrobot_sort.py
48 lines (45 loc) · 1.67 KB
/
robot_sort.py
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
40
41
42
43
44
45
46
47
48
def swap_sort(array):
array = list(array[:])
result = []
for i in range(1, len(array)):
j = i-1
k = i
while j >= 0 and array[j] > array[k]:
array[k], array[j] = array[j], array[k]
result.append("%d%d" % (j, k))
j -= 1
k -= 1
return ",".join(result)
if __name__ == '__main__':
# These "asserts" using only for self-checking and not necessary for auto-testing
def check_solution(f, indata):
result = f(indata)
array = list(indata[:])
la = len(array)
if not isinstance(result, str):
print("The result should be a string")
return False
actions = result.split(",") if result else []
for act in actions:
if len(act) != 2 or not act.isdigit():
print("The wrong action: {}".format(act))
return False
i, j = int(act[0]), int(act[1])
if i >= la or j >= la:
print("Index error: {}".format(act))
return False
if abs(i - j) != 1:
print("The wrong action: {}".format(act))
return False
array[i], array[j] = array[j], array[i]
if len(actions) > (la * (la - 1)) // 2:
print("Too many actions. BOOM!")
return False
if array != sorted(indata):
print("The array is not sorted. BOOM!")
return False
return True
assert check_solution(swap_sort, (6, 4, 2)), "Reverse simple"
assert check_solution(swap_sort, (1, 2, 3, 4, 5)), "All right!"
assert check_solution(swap_sort, (1, 2, 3, 5, 3)), "One move"