Page 1
Student ID: 490, P-Value: 9.12e-05
Nearest Neighbor ID: 79
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1,my_flower2,my_flower3] | | my_list = [my_flower1,my_flower2,my_flower3] |
| your_list = [your_flower1,your_flower2] | | your_list = [your_flower1,your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[our_list.index(my_flower2)] = their_flower | | our_list[our_list.index(my_flower2)] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
n | print(our_list) | n | print(our_list)my_fruit1 = input() |
| my_fruit1 = input() | | |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
n | fruits={my_fruit1,my_fruit2,my_fruit3} | n | fruits = {my_fruit1,my_fruit2,my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
t | print(sorted(fruits)) | t | print(sorted(fruits))par = int(input()) |
| par = int(input()) | | |
| strokes = int(input()) | | strokes = int(input()) |
| if par == 3 or par == 4 or par == 5: | | if par == 3 or par == 4 or par == 5: |
| if strokes - par == -2: | | if strokes - par == -2: |
| print("Eagle") | | print("Eagle") |
| elif strokes - par == -1: | | elif strokes - par == -1: |
| print("Birdie") | | print("Birdie") |
| elif strokes - par == 0: | | elif strokes - par == 0: |
| print("Par") | | print("Par") |
| elif strokes - par == 1: | | elif strokes - par == 1: |
| print("Bogey") | | print("Bogey") |
| else: | | else: |
| print("Error") | | print("Error") |
| else: | | else: |
| print("Error") | | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 2
Student ID: 79, P-Value: 9.12e-05
Nearest Neighbor ID: 490
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1,my_flower2,my_flower3] | | my_list = [my_flower1,my_flower2,my_flower3] |
| your_list = [your_flower1,your_flower2] | | your_list = [your_flower1,your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[our_list.index(my_flower2)] = their_flower | | our_list[our_list.index(my_flower2)] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
n | print(our_list)my_fruit1 = input() | n | print(our_list) |
| | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
n | fruits = {my_fruit1,my_fruit2,my_fruit3} | n | fruits={my_fruit1,my_fruit2,my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
t | print(sorted(fruits))par = int(input()) | t | print(sorted(fruits)) |
| | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
| if par == 3 or par == 4 or par == 5: | | if par == 3 or par == 4 or par == 5: |
| if strokes - par == -2: | | if strokes - par == -2: |
| print("Eagle") | | print("Eagle") |
| elif strokes - par == -1: | | elif strokes - par == -1: |
| print("Birdie") | | print("Birdie") |
| elif strokes - par == 0: | | elif strokes - par == 0: |
| print("Par") | | print("Par") |
| elif strokes - par == 1: | | elif strokes - par == 1: |
| print("Bogey") | | print("Bogey") |
| else: | | else: |
| print("Error") | | print("Error") |
| else: | | else: |
| print("Error") | | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 3
Student ID: 495, P-Value: 1.42e-04
Nearest Neighbor ID: 79
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1,my_flower2,my_flower3] | | my_list = [my_flower1,my_flower2,my_flower3] |
| your_list = [your_flower1,your_flower2] | | your_list = [your_flower1,your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[our_list.index(my_flower2)] = their_flower | | our_list[our_list.index(my_flower2)] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
n | print(our_list) | n | print(our_list)my_fruit1 = input() |
| my_fruit1 = input() | | |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
t | fruits = {my_fruit1, my_fruit2, my_fruit3} | t | fruits = {my_fruit1,my_fruit2,my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits))par = int(input()) | | print(sorted(fruits))par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
| if par == 3 or par == 4 or par == 5: | | if par == 3 or par == 4 or par == 5: |
| if strokes - par == -2: | | if strokes - par == -2: |
| print("Eagle") | | print("Eagle") |
| elif strokes - par == -1: | | elif strokes - par == -1: |
| print("Birdie") | | print("Birdie") |
| elif strokes - par == 0: | | elif strokes - par == 0: |
| print("Par") | | print("Par") |
| elif strokes - par == 1: | | elif strokes - par == 1: |
| print("Bogey") | | print("Bogey") |
| else: | | else: |
| print("Error") | | print("Error") |
| else: | | else: |
| print("Error") | | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 4
Student ID: 140, P-Value: 1.44e-03
Nearest Neighbor ID: 495
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1,my_flower2,my_flower3] | | my_list = [my_flower1,my_flower2,my_flower3] |
| your_list = [your_flower1,your_flower2] | | your_list = [your_flower1,your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[our_list.index(my_flower2)] = their_flower | | our_list[our_list.index(my_flower2)] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
n | fruits = {my_fruit1,my_fruit2,my_fruit3} | n | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | | n | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
n | print(sorted(fruits)) | n | print(sorted(fruits))par = int(input()) |
| par = int(input()) | | |
| strokes = int(input()) | | strokes = int(input()) |
| if par == 3 or par == 4 or par == 5: | | if par == 3 or par == 4 or par == 5: |
| if strokes - par == -2: | | if strokes - par == -2: |
| print("Eagle") | | print("Eagle") |
| elif strokes - par == -1: | | elif strokes - par == -1: |
| print("Birdie") | | print("Birdie") |
| elif strokes - par == 0: | | elif strokes - par == 0: |
| print("Par") | | print("Par") |
| elif strokes - par == 1: | | elif strokes - par == 1: |
| print("Bogey") | | print("Bogey") |
| else: | | else: |
t | print("Erro") | t | print("Error") |
| else: | | else: |
| print("Error") | | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 5
Student ID: 273, P-Value: 1.75e-03
Nearest Neighbor ID: 347
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list=[my_flower1,my_flower2,my_flower3] | | my_list=[my_flower1,my_flower2,my_flower3] |
| your_list=[your_flower1,your_flower2] | | your_list=[your_flower1,your_flower2] |
t | our_list=my_list+your_list | t | our_list= my_list+your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1]=their_flower | | our_list[1]=their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits=set([my_fruit1,my_fruit2,my_fruit3]) | | fruits=set([my_fruit1,my_fruit2,my_fruit3]) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par=int(input()) | | par=int(input()) |
| num=int(input()) | | num=int(input()) |
| if (par-num)==2 and 2<par<6: | | if (par-num)==2 and 2<par<6: |
| print('Eagle') | | print('Eagle') |
| elif (par-num)==1 and 2<par<6: | | elif (par-num)==1 and 2<par<6: |
| print('Birdie') | | print('Birdie') |
| elif (par-num)==0 and 2<par<6: | | elif (par-num)==0 and 2<par<6: |
| print('Par') | | print('Par') |
| elif (par-num)==-1 and 2<par<6: | | elif (par-num)==-1 and 2<par<6: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 6
Student ID: 347, P-Value: 1.75e-03
Nearest Neighbor ID: 273
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list=[my_flower1,my_flower2,my_flower3] | | my_list=[my_flower1,my_flower2,my_flower3] |
| your_list=[your_flower1,your_flower2] | | your_list=[your_flower1,your_flower2] |
t | our_list= my_list+your_list | t | our_list=my_list+your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1]=their_flower | | our_list[1]=their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits=set([my_fruit1,my_fruit2,my_fruit3]) | | fruits=set([my_fruit1,my_fruit2,my_fruit3]) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par=int(input()) | | par=int(input()) |
| num=int(input()) | | num=int(input()) |
| if (par-num)==2 and 2<par<6: | | if (par-num)==2 and 2<par<6: |
| print('Eagle') | | print('Eagle') |
| elif (par-num)==1 and 2<par<6: | | elif (par-num)==1 and 2<par<6: |
| print('Birdie') | | print('Birdie') |
| elif (par-num)==0 and 2<par<6: | | elif (par-num)==0 and 2<par<6: |
| print('Par') | | print('Par') |
| elif (par-num)==-1 and 2<par<6: | | elif (par-num)==-1 and 2<par<6: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 7
Student ID: 258, P-Value: 2.94e-03
Nearest Neighbor ID: 403
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1,my_flower2,my_flower3] | | my_list = [my_flower1,my_flower2,my_flower3] |
n | your_list = [your_flower1,your_flower2] | n | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[our_list.index(my_flower2)] = their_flower | | our_list[our_list.index(my_flower2)] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
t | fruits= set([my_fruit1, my_fruit2, my_fruit3]) | t | fruits = set([my_fruit1, my_fruit2, my_fruit3]) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par_allowed = (3, 4, 5) | | par_allowed = (3, 4, 5) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
| if par in par_allowed: | | if par in par_allowed: |
| if par == strokes: | | if par == strokes: |
| print('Par') | | print('Par') |
| elif par - 2 == strokes: | | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
| elif par -1 == strokes: | | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
| elif par + 1 == strokes: | | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 8
Student ID: 403, P-Value: 2.94e-03
Nearest Neighbor ID: 258
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1,my_flower2,my_flower3] | | my_list = [my_flower1,my_flower2,my_flower3] |
n | your_list = [your_flower1, your_flower2] | n | your_list = [your_flower1,your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[our_list.index(my_flower2)] = their_flower | | our_list[our_list.index(my_flower2)] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
t | fruits = set([my_fruit1, my_fruit2, my_fruit3]) | t | fruits= set([my_fruit1, my_fruit2, my_fruit3]) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par_allowed = (3, 4, 5) | | par_allowed = (3, 4, 5) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
| if par in par_allowed: | | if par in par_allowed: |
| if par == strokes: | | if par == strokes: |
| print('Par') | | print('Par') |
| elif par - 2 == strokes: | | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
| elif par -1 == strokes: | | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
| elif par + 1 == strokes: | | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 9
Student ID: 217, P-Value: 3.91e-03
Nearest Neighbor ID: 79
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
n | my_list = [my_flower1, my_flower2, my_flower3] | n | |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
n | your_list = [your_flower1, your_flower2] | n | |
| their_flower = input() | | their_flower = input() |
n | | n | my_list = [my_flower1,my_flower2,my_flower3] |
| | | your_list = [your_flower1,your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[our_list.index(my_flower2)] = their_flower | | our_list[our_list.index(my_flower2)] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
n | print(our_list) | n | print(our_list)my_fruit1 = input() |
| my_fruit1 = input() | | |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
n | fruits = {my_fruit1, my_fruit3, my_fruit2} | n | fruits = {my_fruit1,my_fruit2,my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
t | print(sorted(fruits)) | t | print(sorted(fruits))par = int(input()) |
| par = int(input()) | | |
| strokes = int(input()) | | strokes = int(input()) |
| if par == 3 or par == 4 or par == 5: | | if par == 3 or par == 4 or par == 5: |
| if strokes - par == -2: | | if strokes - par == -2: |
| print("Eagle") | | print("Eagle") |
| elif strokes - par == -1: | | elif strokes - par == -1: |
| print("Birdie") | | print("Birdie") |
| elif strokes - par == 0: | | elif strokes - par == 0: |
| print("Par") | | print("Par") |
| elif strokes - par == 1: | | elif strokes - par == 1: |
| print("Bogey") | | print("Bogey") |
| else: | | else: |
| print("Error") | | print("Error") |
| else: | | else: |
| print("Error") | | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 10
Student ID: 224, P-Value: 4.13e-03
Nearest Neighbor ID: 123
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list[our_list.index(my_flower2)] = their_flower | n | our_list[our_list.index(my_flower2)]=their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | fruits.add (your_fruit1) | n | fruits.add(your_fruit1) |
| fruits.add (your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | fruits.add (their_fruit) | n | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | fruits.add (your_fruit1) | n | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | fruits.remove (my_fruit1) | n | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par_allowed = (3, 4, 5) | | par_allowed = (3, 4, 5) |
t | par = int(input("")) | t | par = int(input()) |
| strokes = int(input("")) | | strokes = int(input()) |
| if par in par_allowed: | | if par in par_allowed: |
| if par == strokes: | | if par == strokes: |
| print('Par') | | print('Par') |
| elif par - 2 == strokes: | | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
| elif par -1 == strokes: | | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
| elif par + 1 == strokes: | | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 11
Student ID: 123, P-Value: 4.13e-03
Nearest Neighbor ID: 224
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list[our_list.index(my_flower2)]=their_flower | n | our_list[our_list.index(my_flower2)] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | fruits.add(your_fruit1) | n | fruits.add (your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add (your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | fruits.add(their_fruit) | n | fruits.add (their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | fruits.add(your_fruit1) | n | fruits.add (your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | fruits.remove(my_fruit1) | n | fruits.remove (my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par_allowed = (3, 4, 5) | | par_allowed = (3, 4, 5) |
t | par = int(input()) | t | par = int(input("")) |
| strokes = int(input()) | | strokes = int(input("")) |
| if par in par_allowed: | | if par in par_allowed: |
| if par == strokes: | | if par == strokes: |
| print('Par') | | print('Par') |
| elif par - 2 == strokes: | | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
| elif par -1 == strokes: | | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
| elif par + 1 == strokes: | | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 12
Student ID: 170, P-Value: 5.57e-03
Nearest Neighbor ID: 123
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list[our_list.index(my_flower2)] = their_flower | n | our_list[our_list.index(my_flower2)]=their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par_allowed = (3, 4, 5) | | par_allowed = (3, 4, 5) |
| par = int(input()) | | par = int(input()) |
n | number_strokes = int(input()) | n | strokes = int(input()) |
| if par in par_allowed: | | if par in par_allowed: |
n | if par == number_strokes: | n | if par == strokes: |
| print('Par') | | print('Par') |
n | elif par - 2 == number_strokes: | n | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
n | elif par - 1 == number_strokes: | n | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
t | elif par + 1 == number_strokes: | t | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 13
Student ID: 318, P-Value: 5.72e-03
Nearest Neighbor ID: 123
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
n | my_list = [my_flower1,my_flower2,my_flower3] | n | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1,your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list[our_list.index(my_flower2)] = their_flower | n | our_list[our_list.index(my_flower2)]=their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
t | par_allowed = (3,4,5) | t | par_allowed = (3, 4, 5) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
| if par in par_allowed: | | if par in par_allowed: |
| if par == strokes: | | if par == strokes: |
| print('Par') | | print('Par') |
| elif par - 2 == strokes: | | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
| elif par -1 == strokes: | | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
| elif par + 1 == strokes: | | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 14
Student ID: 162, P-Value: 6.18e-03
Nearest Neighbor ID: 434
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
n | your_list = [your_flower1, your_flower2] | n | your_list = [your_flower1,your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list[1] = their_flower | n | our_list[1]=their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list) | n | print(our_list)my_fruit1 = input() |
| my_fruit1 = input() | | |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
t | fruits ={my_fruit1, my_fruit2,my_fruit3} | t | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits))par_allowed = (3, 4, 5) | | print(sorted(fruits))par_allowed = (3, 4, 5) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
| if par in par_allowed: | | if par in par_allowed: |
| if par == strokes: | | if par == strokes: |
| print('Par') | | print('Par') |
| elif par - 2 == strokes: | | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
| elif par -1 == strokes: | | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
| elif par + 1 == strokes: | | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 15
Student ID: 434, P-Value: 6.18e-03
Nearest Neighbor ID: 162
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
n | your_list = [your_flower1,your_flower2] | n | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list[1]=their_flower | n | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list)my_fruit1 = input() | n | print(our_list) |
| | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
t | fruits = {my_fruit1, my_fruit2, my_fruit3} | t | fruits ={my_fruit1, my_fruit2,my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits))par_allowed = (3, 4, 5) | | print(sorted(fruits))par_allowed = (3, 4, 5) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
| if par in par_allowed: | | if par in par_allowed: |
| if par == strokes: | | if par == strokes: |
| print('Par') | | print('Par') |
| elif par - 2 == strokes: | | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
| elif par -1 == strokes: | | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
| elif par + 1 == strokes: | | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 16
Student ID: 384, P-Value: 6.85e-03
Nearest Neighbor ID: 162
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
n | my_list=[my_flower1, my_flower2, my_flower3] | n | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list =[your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
n | fruits = {my_fruit1, my_fruit2, my_fruit3} | n | fruits ={my_fruit1, my_fruit2,my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
t | print(sorted(fruits)) | t | print(sorted(fruits))par_allowed = (3, 4, 5) |
| par_allowed = (3, 4, 5) | | |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
| if par in par_allowed: | | if par in par_allowed: |
| if par == strokes: | | if par == strokes: |
| print('Par') | | print('Par') |
| elif par - 2 == strokes: | | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
| elif par -1 == strokes: | | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
| elif par + 1 == strokes: | | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 17
Student ID: 77, P-Value: 7.58e-03
Nearest Neighbor ID: 79
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1,my_flower2,my_flower3] | | my_list = [my_flower1,my_flower2,my_flower3] |
| your_list = [your_flower1,your_flower2] | | your_list = [your_flower1,your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[our_list.index(my_flower2)] = their_flower | | our_list[our_list.index(my_flower2)] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
n | print(our_list) | n | print(our_list)my_fruit1 = input() |
| my_fruit1 = input() | | |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1,my_fruit2,my_fruit3} | | fruits = {my_fruit1,my_fruit2,my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
n | print(sorted(fruits)) | n | print(sorted(fruits))par = int(input()) |
| par = int(input()) | | |
| strokes = int(input()) | | strokes = int(input()) |
n | if par==3 or par==4 or par==5: | n | if par == 3 or par == 4 or par == 5: |
| if strokes-par==-2: | | if strokes - par == -2: |
| print("Eagle") | | print("Eagle") |
| elif strokes - par == -1: | | elif strokes - par == -1: |
| print("Birdie") | | print("Birdie") |
n | elif strokes-par == 0: | n | elif strokes - par == 0: |
| print("Par") | | print("Par") |
n | elif strokes-par == 1: | n | elif strokes - par == 1: |
| print("Bogey") | | print("Bogey") |
t | | t | else: |
| | | print("Error") |
| else: | | else: |
| print("Error") | | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 18
Student ID: 450, P-Value: 1.22e-02
Nearest Neighbor ID: 378
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list) | n | print(our_list)my_fruit1 = input() |
| my_fruit1 = input() | | |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
n | if par < 3 : | n | if par != 3 and par != 4 and par != 5: |
| print("Error") | | |
| elif par > 5: | | |
| print('Error') | | print('Error') |
| elif strokes == (par - 2): | | elif strokes == (par - 2): |
| print('Eagle') | | print('Eagle') |
| elif strokes == (par - 1): | | elif strokes == (par - 1): |
| print('Birdie') | | print('Birdie') |
| elif strokes == par: | | elif strokes == par: |
| print('Par') | | print('Par') |
t | elif strokes > par: | t | elif strokes == (par + 1): |
| print('Bogey') | | print('Bogey') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 19
Student ID: 378, P-Value: 1.22e-02
Nearest Neighbor ID: 450
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list)my_fruit1 = input() | n | print(our_list) |
| | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
n | if par != 3 and par != 4 and par != 5: | n | if par < 3 : |
| | | print("Error") |
| | | elif par > 5: |
| print('Error') | | print('Error') |
| elif strokes == (par - 2): | | elif strokes == (par - 2): |
| print('Eagle') | | print('Eagle') |
| elif strokes == (par - 1): | | elif strokes == (par - 1): |
| print('Birdie') | | print('Birdie') |
| elif strokes == par: | | elif strokes == par: |
| print('Par') | | print('Par') |
t | elif strokes == (par + 1): | t | elif strokes > par: |
| print('Bogey') | | print('Bogey') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 20
Student ID: 64, P-Value: 1.63e-02
Nearest Neighbor ID: 217
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
n | | n | my_list = [my_flower1, my_flower2, my_flower3] |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
n | | n | your_list = [your_flower1, your_flower2] |
| their_flower = input() | | their_flower = input() |
n | my_list= [my_flower1, my_flower2, my_flower3] | n | |
| your_list= [your_flower1, your_flower2] | | |
| our_list= my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list[1] = their_flower | n | our_list[our_list.index(my_flower2)] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list.remove(my_flower3) | n | our_list.remove(our_list[1]) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
n | fruits= {my_fruit1, my_fruit2, my_fruit3} | n | fruits = {my_fruit1, my_fruit3, my_fruit2} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
t | if par == 3 or par == 4 or par == 5: | t | if par == 3 or par == 4 or par == 5: |
| if strokes - par == -2: | | if strokes - par == -2: |
| print("Eagle") | | print("Eagle") |
| elif strokes - par == -1: | | elif strokes - par == -1: |
| print("Birdie") | | print("Birdie") |
| elif strokes - par == 0: | | elif strokes - par == 0: |
| print("Par") | | print("Par") |
| elif strokes - par == 1: | | elif strokes - par == 1: |
| print("Bogey") | | print("Bogey") |
| else: | | else: |
| print("Error") | | print("Error") |
| else: | | else: |
| print("Error") | | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 21
Student ID: 7, P-Value: 1.74e-02
Nearest Neighbor ID: 123
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
n | my_list = [my_flower1 ,my_flower2 ,my_flower3] | n | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list[1] = their_flower | n | our_list[our_list.index(my_flower2)]=their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par_allowed = (3, 4, 5) | | par_allowed = (3, 4, 5) |
t | par = int(input("")) | t | par = int(input()) |
| strokes = int(input("")) | | strokes = int(input()) |
| if par in par_allowed: | | if par in par_allowed: |
| if par == strokes: | | if par == strokes: |
| print('Par') | | print('Par') |
| elif par - 2 == strokes: | | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
| elif par -1 == strokes: | | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
| elif par + 1 == strokes: | | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 22
Student ID: 367, P-Value: 1.98e-02
Nearest Neighbor ID: 490
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1,my_flower2,my_flower3] | | my_list = [my_flower1,my_flower2,my_flower3] |
| your_list = [your_flower1,your_flower2] | | your_list = [your_flower1,your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[our_list.index(my_flower2)] = their_flower | | our_list[our_list.index(my_flower2)] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
n | print(our_list)my_fruit1 = input() | n | print(our_list) |
| | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits={my_fruit1,my_fruit2,my_fruit3} | | fruits={my_fruit1,my_fruit2,my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | par_value = int(input()) | n | par = int(input()) |
| strokes_value = int(input()) | | strokes = int(input()) |
| if par_value == 3 or par_value == 4 or par_value == 5: | | if par == 3 or par == 4 or par == 5: |
| if strokes_value - par_value == -2: | | if strokes - par == -2: |
| print("Eagle") | | print("Eagle") |
n | elif strokes_value - par_value == -1: | n | elif strokes - par == -1: |
| print("Birdie") | | print("Birdie") |
n | elif strokes_value - par_value == 0: | n | elif strokes - par == 0: |
| print("Par") | | print("Par") |
t | elif strokes_value - par_value == 1: | t | elif strokes - par == 1: |
| print("Bogey") | | print("Bogey") |
| else: | | else: |
| print("Error") | | print("Error") |
| else: | | else: |
| print("Error") | | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 23
Student ID: 26, P-Value: 2.10e-02
Nearest Neighbor ID: 179
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[our_list.index(my_flower2)] = their_flower | | our_list[our_list.index(my_flower2)] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list)my_fruit1 = input() | n | print(our_list) |
| | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
n | stroke = int(input()) | n | strokes = int(input()) |
| if par != 3 and par != 4 and par != 5: | | if par != 3 and par != 4 and par != 5: |
t | print("Error") | t | print("Error") |
| elif stroke == par - 2: | | elif strokes == par - 2: |
| print("Eagle") | | print("Eagle") |
| elif stroke == par - 1: | | elif strokes == par - 1: |
| print("Birdie") | | print("Birdie") |
| elif stroke == par: | | elif strokes == par: |
| print("Par") | | print("Par") |
| elif stroke == par + 1: | | elif strokes == par + 1: |
| print("Bogey") | | print("Bogey") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 24
Student ID: 179, P-Value: 2.10e-02
Nearest Neighbor ID: 26
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[our_list.index(my_flower2)] = their_flower | | our_list[our_list.index(my_flower2)] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list) | n | print(our_list)my_fruit1 = input() |
| my_fruit1 = input() | | |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
n | strokes = int(input()) | n | stroke = int(input()) |
| if par != 3 and par != 4 and par != 5: | | if par != 3 and par != 4 and par != 5: |
t | print("Error") | t | print("Error") |
| elif strokes == par - 2: | | elif stroke == par - 2: |
| print("Eagle") | | print("Eagle") |
| elif strokes == par - 1: | | elif stroke == par - 1: |
| print("Birdie") | | print("Birdie") |
| elif strokes == par: | | elif stroke == par: |
| print("Par") | | print("Par") |
| elif strokes == par + 1: | | elif stroke == par + 1: |
| print("Bogey") | | print("Bogey") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 25
Student ID: 194, P-Value: 3.34e-02
Nearest Neighbor ID: 280
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list) | n | print(our_list)my_fruit1 = input() |
| my_fruit1 = input() | | |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
n | fruits = {my_fruit1, my_fruit2, my_fruit3} | n | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| num_strokes = int(input()) | | num_strokes = int(input()) |
n | if 3 <= par <= 5: | n | if 3<= par <= 5: |
| if num_strokes is par - 2: | | if num_strokes is par - 2: |
| print('Eagle') | | print('Eagle') |
| elif num_strokes is par - 1: | | elif num_strokes is par - 1: |
| print('Birdie') | | print('Birdie') |
n | elif num_strokes is par: | n | elif num_strokes == par: |
| print('Par') | | print('Par') |
t | elif num_strokes is 1 + par: | t | elif num_strokes is par + 1: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 26
Student ID: 280, P-Value: 3.34e-02
Nearest Neighbor ID: 194
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list)my_fruit1 = input() | n | print(our_list) |
| | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
n | fruits = {my_fruit1, my_fruit2, my_fruit3} | n | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| num_strokes = int(input()) | | num_strokes = int(input()) |
n | if 3<= par <= 5: | n | if 3 <= par <= 5: |
| if num_strokes is par - 2: | | if num_strokes is par - 2: |
| print('Eagle') | | print('Eagle') |
| elif num_strokes is par - 1: | | elif num_strokes is par - 1: |
| print('Birdie') | | print('Birdie') |
n | elif num_strokes == par: | n | elif num_strokes is par: |
| print('Par') | | print('Par') |
t | elif num_strokes is par + 1: | t | elif num_strokes is 1 + par: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 27
Student ID: 377, P-Value: 4.98e-02
Nearest Neighbor ID: 123
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
n | WQE=our_list | n | |
| our_list.append(their_flower) | | our_list.append(their_flower) |
n | print(WQE) | n | |
| our_list[1]=their_flower | | |
| print(our_list) | | print(our_list) |
n | our_list.remove(our_list[1]) | n | our_list[our_list.index(my_flower2)]=their_flower |
| | | print(our_list) |
| | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
t | fruits = {my_fruit1,my_fruit2,my_fruit3} | t | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par_allowed = (3, 4, 5) | | par_allowed = (3, 4, 5) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
| if par in par_allowed: | | if par in par_allowed: |
| if par == strokes: | | if par == strokes: |
| print('Par') | | print('Par') |
| elif par - 2 == strokes: | | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
| elif par -1 == strokes: | | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
| elif par + 1 == strokes: | | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 28
Student ID: 316, P-Value: 7.45e-02
Nearest Neighbor ID: 170
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
n | my_list = [my_flower1,my_flower2,my_flower3] | n | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1,your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[our_list.index(my_flower2)] = their_flower | | our_list[our_list.index(my_flower2)] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(our_list[1]) | | our_list.remove(our_list[1]) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | | n | par_allowed = (3, 4, 5) |
| par = int(input()) | | par = int(input()) |
n | num_strokes = int(input()) | n | number_strokes = int(input()) |
| allowed_par = (3,4,5) | | |
| if par in allowed_par: | | if par in par_allowed: |
| if par == num_strokes: | | if par == number_strokes: |
| print('Par') | | print('Par') |
n | | n | elif par - 2 == number_strokes: |
| | | print('Eagle') |
| | | elif par - 1 == number_strokes: |
| | | print('Birdie') |
| elif par + 1 == num_strokes: | | elif par + 1 == number_strokes: |
| print('Bogey') | | print('Bogey') |
t | elif par - 1 == num_strokes: | t | |
| print('Birdie') | | |
| elif par - 2 == num_strokes: | | |
| print('Eagle') | | |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 29
Student ID: 102, P-Value: 7.90e-02
Nearest Neighbor ID: 162
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list[1]= their_flower | n | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
n | our_list.pop(1) | n | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
n | fruits = set([my_fruit1, my_fruit2, my_fruit3]) | n | fruits ={my_fruit1, my_fruit2,my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
t | print(sorted(fruits)) | t | print(sorted(fruits))par_allowed = (3, 4, 5) |
| par_allowed = (3, 4, 5) | | |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
| if par in par_allowed: | | if par in par_allowed: |
| if par == strokes: | | if par == strokes: |
| print('Par') | | print('Par') |
| elif par - 2 == strokes: | | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
| elif par -1 == strokes: | | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
| elif par + 1 == strokes: | | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 30
Student ID: 159, P-Value: 8.59e-02
Nearest Neighbor ID: 194
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| num_strokes = int(input()) | | num_strokes = int(input()) |
n | if 2<par<6: | n | if 3 <= par <= 5: |
| if num_strokes == (par - 2): | | if num_strokes is par - 2: |
| print('Eagle') | | print('Eagle') |
n | elif num_strokes == (par - 1): | n | elif num_strokes is par - 1: |
| print('Birdie') | | print('Birdie') |
n | elif num_strokes == par: | n | elif num_strokes is par: |
| print('Par') | | print('Par') |
t | elif num_strokes == (par + 1): | t | elif num_strokes is 1 + par: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 31
Student ID: 455, P-Value: 8.96e-02
Nearest Neighbor ID: 130
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | par = int(input()) | n | number_par = int(input()) |
| number_strokes = int(input()) | | number_stroke = int(input()) |
| if par == 3 or par == 4 or par == 5: | | if number_par == 3 or number_par == 4 or number_par == 5: |
| if number_strokes == par - 2: | | if number_par - number_stroke == 2: |
| print("Eagle") | | print("Eagle") |
| elif number_strokes == par -1: | | elif number_par - number_stroke == 1: |
| print("Birdie") | | print("Birdie") |
n | elif number_strokes == par: | n | elif number_par - number_stroke == 0: |
| print("Par") | | print("Par") |
t | elif number_strokes == par + 1: | t | elif number_par - number_stroke == -1: |
| print("Bogey") | | print("Bogey") |
| else: | | else: |
| print("Error") | | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 32
Student ID: 130, P-Value: 8.96e-02
Nearest Neighbor ID: 455
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | number_par = int(input()) | n | par = int(input()) |
| number_stroke = int(input()) | | number_strokes = int(input()) |
| if number_par == 3 or number_par == 4 or number_par == 5: | | if par == 3 or par == 4 or par == 5: |
| if number_par - number_stroke == 2: | | if number_strokes == par - 2: |
| print("Eagle") | | print("Eagle") |
| elif number_par - number_stroke == 1: | | elif number_strokes == par -1: |
| print("Birdie") | | print("Birdie") |
n | elif number_par - number_stroke == 0: | n | elif number_strokes == par: |
| print("Par") | | print("Par") |
t | elif number_par - number_stroke == -1: | t | elif number_strokes == par + 1: |
| print("Bogey") | | print("Bogey") |
| else: | | else: |
| print("Error") | | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 33
Student ID: 407, P-Value: 9.46e-02
Nearest Neighbor ID: 159
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
n | fruits = set([my_fruit1, my_fruit2, my_fruit3]) | n | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| num_strokes = int(input()) | | num_strokes = int(input()) |
n | if par == 3 or par == 4 or par == 5: | n | if 2<par<6: |
| if num_strokes == (par - 2): | | if num_strokes == (par - 2): |
| print('Eagle') | | print('Eagle') |
| elif num_strokes == (par - 1): | | elif num_strokes == (par - 1): |
| print('Birdie') | | print('Birdie') |
| elif num_strokes == par: | | elif num_strokes == par: |
| print('Par') | | print('Par') |
t | elif num_strokes + 1 > par: | t | elif num_strokes == (par + 1): |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 34
Student ID: 114, P-Value: 9.84e-02
Nearest Neighbor ID: 455
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list[our_list.index(my_flower2)] = their_flower | n | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list.remove(our_list[1]) | n | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
n | golf_stroke = int(input()) | n | number_strokes = int(input()) |
| if par == 3 or par == 4 or par == 5: | | if par == 3 or par == 4 or par == 5: |
n | if golf_stroke == par - 2: | n | if number_strokes == par - 2: |
| print("Eagle") | | print("Eagle") |
| elif golf_stroke == par - 1: | | elif number_strokes == par -1: |
| print("Birdie") | | print("Birdie") |
| elif golf_stroke == par: | | elif number_strokes == par: |
| print("Par") | | print("Par") |
t | elif golf_stroke == par + 1: | t | elif number_strokes == par + 1: |
| print("Bogey") | | print("Bogey") |
| else: | | else: |
| print("Error") | | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 35
Student ID: 62, P-Value: 1.01e-01
Nearest Neighbor ID: 467
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | | n | our_list.remove(my_flower2) |
| our_list.insert(1, their_flower) | | our_list.insert(1, their_flower) |
n | our_list.remove(my_flower2) | n | |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list) | n | print(our_list)my_fruit1 = input() |
| my_fruit1 = input() | | |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
n | if par < 6 and par > 2: | n | if par == 3 or par == 4 or par == 5: |
| if strokes == (par - 2): | | if strokes == (par - 2): |
| print("Eagle") | | print("Eagle") |
n | elif strokes == (par - 1): | n | if strokes == (par - 1): |
| print("Birdie") | | print("Birdie") |
n | elif strokes == par: | n | if strokes == par: |
| print("Par") | | print("Par") |
n | elif strokes == (par + 1): | n | if strokes == (par + 1): |
| print("Bogey") | | print("Bogey") |
t | else: | t | |
| print("Error") | | |
| else: | | else: |
| print("Error") | | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 36
Student ID: 467, P-Value: 1.01e-01
Nearest Neighbor ID: 62
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | | n | our_list.insert(1, their_flower) |
| our_list.remove(my_flower2) | | our_list.remove(my_flower2) |
n | our_list.insert(1, their_flower) | n | |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list)my_fruit1 = input() | n | print(our_list) |
| | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
n | if par == 3 or par == 4 or par == 5: | n | if par < 6 and par > 2: |
| if strokes == (par - 2): | | if strokes == (par - 2): |
| print("Eagle") | | print("Eagle") |
n | if strokes == (par - 1): | n | elif strokes == (par - 1): |
| print("Birdie") | | print("Birdie") |
n | if strokes == par: | n | elif strokes == par: |
| print("Par") | | print("Par") |
n | if strokes == (par + 1): | n | elif strokes == (par + 1): |
| print("Bogey") | | print("Bogey") |
t | | t | else: |
| | | print("Error") |
| else: | | else: |
| print("Error") | | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 37
Student ID: 74, P-Value: 1.06e-01
Nearest Neighbor ID: 384
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
n | my_list=[my_flower1, my_flower2,my_flower3] | n | my_list=[my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1 , your_flower2] | | your_list =[your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
n | our_list.pop(1) | n | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
n | fruits={my_fruit1, my_fruit2, my_fruit3} | n | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | par_total = (3, 4, 5) | n | par_allowed = (3, 4, 5) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
t | if par in par_total: | t | if par in par_allowed: |
| if par == strokes: | | if par == strokes: |
| print('Par') | | print('Par') |
| elif par - 2 == strokes: | | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
| elif par -1 == strokes: | | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
| elif par + 1 == strokes: | | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 38
Student ID: 250, P-Value: 1.19e-01
Nearest Neighbor ID: 450
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list.remove(my_flower3) | n | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | your_fruits = {your_fruit1, your_fruit2} | n | fruits.add(your_fruit1) |
| fruits = fruits.union(your_fruits) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
n | if par < 3 or par > 5: | n | if par < 3 : |
| | | print("Error") |
| | | elif par > 5: |
| print('Error') | | print('Error') |
| elif strokes == (par - 2): | | elif strokes == (par - 2): |
| print('Eagle') | | print('Eagle') |
| elif strokes == (par - 1): | | elif strokes == (par - 1): |
| print('Birdie') | | print('Birdie') |
| elif strokes == par: | | elif strokes == par: |
| print('Par') | | print('Par') |
t | elif strokes == (par + 1): | t | elif strokes > par: |
| print('Bogey') | | print('Bogey') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 39
Student ID: 203, P-Value: 1.33e-01
Nearest Neighbor ID: 290
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | | n | strokes = int(input()) |
| par = int(input()) | | par = int(input()) |
n | num_strokes = int(input()) | n | if par > 6 or par < 3: |
| if par < 3 or par > 5: | | |
| print('Error') | | print('Error') |
n | elif par - num_strokes == 2: | n | elif strokes - par == 2: |
| print('Eagle') | | print('Eagle') |
n | elif par - num_strokes == 1: | n | elif strokes - par == 1: |
| print('Birdie') | | print('Birdie') |
n | elif par == num_strokes: | n | elif strokes - par == 0: |
| print('Par') | | print('Par') |
t | elif num_strokes == par + 1: | t | elif strokes - par == -1: |
| print('Bogey') | | print('Bogey') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 40
Student ID: 290, P-Value: 1.33e-01
Nearest Neighbor ID: 203
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | strokes = int(input()) | n | |
| par = int(input()) | | par = int(input()) |
n | if par > 6 or par < 3: | n | num_strokes = int(input()) |
| | | if par < 3 or par > 5: |
| print('Error') | | print('Error') |
n | elif strokes - par == 2: | n | elif par - num_strokes == 2: |
| print('Eagle') | | print('Eagle') |
n | elif strokes - par == 1: | n | elif par - num_strokes == 1: |
| print('Birdie') | | print('Birdie') |
n | elif strokes - par == 0: | n | elif par == num_strokes: |
| print('Par') | | print('Par') |
t | elif strokes - par == -1: | t | elif num_strokes == par + 1: |
| print('Bogey') | | print('Bogey') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 41
Student ID: 242, P-Value: 1.36e-01
Nearest Neighbor ID: 465
Student (left) and Nearest Neighbor (right).
f | x1 = input() | f | x1 = input() |
| y1 = input() | | y1 = input() |
| z1 = input() | | z1 = input() |
n | x2 = input() | n | x2= input() |
| y2 = input() | | y2 = input() |
| z2 = input() | | z2 = input() |
| my = [x1, y1, z1] | | my = [x1, y1, z1] |
| you = [x2, y2] | | you = [x2, y2] |
| their = [z2] | | their = [z2] |
| our = [x1, y1, z1, x2, y2] | | our = [x1, y1, z1, x2, y2] |
| print(our) | | print(our) |
| our.extend(their) | | our.extend(their) |
| print(our) | | print(our) |
n | our[1] = z2 | n | our[1]= z2 |
| print(our) | | print(our) |
| our.remove(z2) | | our.remove(z2) |
| print(our) | | print(our) |
| our.pop(1) | | our.pop(1) |
n | print(our) | n | |
| my_fruit1 = input() | | print(our)my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits2 = {your_fruit2, your_fruit1} | | fruits2 = {your_fruit2, your_fruit1} |
| fruits = fruits.union(fruits2) | | fruits = fruits.union(fruits2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
n | number = {3 ,4 ,5} | n | number = {3 ,4 ,5 } |
| if par in number: | | if par in number: |
n | if (strokes == par - 2) or (strokes < (par -2)): | n | if (strokes == par - 2) or (strokes < (par - 2)): |
| print('Eagle') | | print("Eagle") |
| elif (strokes == par - 1) or (strokes <par): | | elif (strokes == par - 1) or (strokes < par): |
| print('Birdie') | | print("Birdie") |
| elif strokes == par: | | elif strokes == par: |
n | print ('Par') | n | print("Par") |
| elif strokes > par: | | elif strokes > par: |
n | print('Bogey') | n | print("Bogey") |
| else: | | else: |
t | print('Error') | t | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 42
Student ID: 465, P-Value: 1.36e-01
Nearest Neighbor ID: 242
Student (left) and Nearest Neighbor (right).
f | x1 = input() | f | x1 = input() |
| y1 = input() | | y1 = input() |
| z1 = input() | | z1 = input() |
n | x2= input() | n | x2 = input() |
| y2 = input() | | y2 = input() |
| z2 = input() | | z2 = input() |
| my = [x1, y1, z1] | | my = [x1, y1, z1] |
| you = [x2, y2] | | you = [x2, y2] |
| their = [z2] | | their = [z2] |
| our = [x1, y1, z1, x2, y2] | | our = [x1, y1, z1, x2, y2] |
| print(our) | | print(our) |
| our.extend(their) | | our.extend(their) |
| print(our) | | print(our) |
n | our[1]= z2 | n | our[1] = z2 |
| print(our) | | print(our) |
| our.remove(z2) | | our.remove(z2) |
| print(our) | | print(our) |
| our.pop(1) | | our.pop(1) |
n | | n | print(our) |
| print(our)my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits2 = {your_fruit2, your_fruit1} | | fruits2 = {your_fruit2, your_fruit1} |
| fruits = fruits.union(fruits2) | | fruits = fruits.union(fruits2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
n | number = {3 ,4 ,5 } | n | number = {3 ,4 ,5} |
| if par in number: | | if par in number: |
n | if (strokes == par - 2) or (strokes < (par - 2)): | n | if (strokes == par - 2) or (strokes < (par -2)): |
| print("Eagle") | | print('Eagle') |
| elif (strokes == par - 1) or (strokes < par): | | elif (strokes == par - 1) or (strokes <par): |
| print("Birdie") | | print('Birdie') |
| elif strokes == par: | | elif strokes == par: |
n | print("Par") | n | print ('Par') |
| elif strokes > par: | | elif strokes > par: |
n | print("Bogey") | n | print('Bogey') |
| else: | | else: |
t | print("Error") | t | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 43
Student ID: 475, P-Value: 1.39e-01
Nearest Neighbor ID: 399
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
n | my_list = my_flower1,my_flower2,my_flower3 | n | my_list = my_flower1, my_flower2, my_flower3 |
| your_list = your_flower1,your_flower2 | | your_list = your_flower1, your_flower2 |
| our_list=list(my_list+your_list) | | our_list = list(my_list+your_list) |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list[1] = their_flower | n | our_list[1] = (their_flower) |
| print(our_list) | | print(our_list) |
| del our_list[1] | | del our_list[1] |
| print(our_list) | | print(our_list) |
| del our_list[1] | | del our_list[1] |
n | print(our_list) | n | print(our_list)my_fruit1 = input() |
| my_fruit1 = input() | | |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1,my_fruit2,my_fruit3} | | fruits = {my_fruit1,my_fruit2,my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| your_fruits = (your_fruit1,your_fruit2) | | your_fruits = (your_fruit1,your_fruit2) |
n | fruits.update(your_fruits) | n | fruits.update(your_fruits) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | fruits.add(their_fruit) | n | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
t | fruits.remove(my_fruit1) | t | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits))par_allowed = (3, 4, 5) |
| par_allowed = (3, 4, 5) | | |
| par = int(input()) | | par = int(input("")) |
| strokes = int(input( )) | | strokes = int(input("")) |
| if par in par_allowed: | | if par in par_allowed: |
| if par == strokes: | | if par == strokes: |
| print('Par') | | print('Par') |
| elif par - 2 == strokes: | | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
| elif par -1 == strokes: | | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
| elif par + 1 == strokes: | | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 44
Student ID: 399, P-Value: 1.39e-01
Nearest Neighbor ID: 475
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
n | my_list = my_flower1, my_flower2, my_flower3 | n | my_list = my_flower1,my_flower2,my_flower3 |
| your_list = your_flower1, your_flower2 | | your_list = your_flower1,your_flower2 |
| our_list = list(my_list+your_list) | | our_list=list(my_list+your_list) |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list[1] = (their_flower) | n | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| del our_list[1] | | del our_list[1] |
| print(our_list) | | print(our_list) |
| del our_list[1] | | del our_list[1] |
n | print(our_list)my_fruit1 = input() | n | print(our_list) |
| | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1,my_fruit2,my_fruit3} | | fruits = {my_fruit1,my_fruit2,my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| your_fruits = (your_fruit1,your_fruit2) | | your_fruits = (your_fruit1,your_fruit2) |
n | fruits.update(your_fruits) | n | fruits.update(your_fruits) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | fruits.add(their_fruit) | n | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
t | fruits.remove(my_fruit1) | t | fruits.remove(my_fruit1) |
| print(sorted(fruits))par_allowed = (3, 4, 5) | | print(sorted(fruits)) |
| | | par_allowed = (3, 4, 5) |
| par = int(input("")) | | par = int(input()) |
| strokes = int(input("")) | | strokes = int(input( )) |
| if par in par_allowed: | | if par in par_allowed: |
| if par == strokes: | | if par == strokes: |
| print('Par') | | print('Par') |
| elif par - 2 == strokes: | | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
| elif par -1 == strokes: | | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
| elif par + 1 == strokes: | | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 45
Student ID: 329, P-Value: 1.49e-01
Nearest Neighbor ID: 450
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
n | number_of_strokes = int(input()) | n | strokes = int(input()) |
| if number_of_strokes == par - int(2): | | if par < 3 : |
| print("Eagle") | | |
| elif par < 3 or par >5: | | |
| print("Error") | | print("Error") |
t | | t | elif par > 5: |
| | | print('Error') |
| | | elif strokes == (par - 2): |
| | | print('Eagle') |
| elif number_of_strokes == par - int(1): | | elif strokes == (par - 1): |
| print("Birdie") | | print('Birdie') |
| elif number_of_strokes == par: | | elif strokes == par: |
| print("Par") | | print('Par') |
| elif number_of_strokes == par + int(1): | | elif strokes > par: |
| print("Bogey") | | print('Bogey') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 46
Student ID: 34, P-Value: 1.51e-01
Nearest Neighbor ID: 290
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
n | our_list.pop(1) | n | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | | n | strokes = int(input()) |
| par = int(input()) | | par = int(input()) |
n | strokes = int(input()) | n | if par > 6 or par < 3: |
| if par < 3 or par > 5: | | |
| print('Error') | | print('Error') |
n | elif par - strokes == 2: | n | elif strokes - par == 2: |
| print('Eagle') | | print('Eagle') |
n | elif par - strokes == 1: | n | elif strokes - par == 1: |
| print('Birdie') | | print('Birdie') |
n | elif strokes == par: | n | elif strokes - par == 0: |
| print('Par') | | print('Par') |
t | elif strokes - par == 1: | t | elif strokes - par == -1: |
| print('Bogey') | | print('Bogey') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 47
Student ID: 47, P-Value: 1.61e-01
Nearest Neighbor ID: 467
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list.insert(our_list.index(my_flower2),their_flower) | n | |
| our_list.remove(my_flower2) | | our_list.remove(my_flower2) |
n | | n | our_list.insert(1, their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list)my_fruit1 = input() | | print(our_list)my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
| if par == 3 or par == 4 or par == 5: | | if par == 3 or par == 4 or par == 5: |
n | if strokes == par - 2: | n | if strokes == (par - 2): |
| print('Eagle') | | print("Eagle") |
| elif strokes == par - 1: | | if strokes == (par - 1): |
| print('Birdie') | | print("Birdie") |
| elif strokes == par: | | if strokes == par: |
| print('Par') | | print("Par") |
| elif strokes == par + 1: | | if strokes == (par + 1): |
| print('Bogey') | | print("Bogey") |
| else: | | else: |
t | print('Error') | t | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 48
Student ID: 220, P-Value: 1.77e-01
Nearest Neighbor ID: 47
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list[our_list.index(my_flower2)] = their_flower | n | our_list.insert(our_list.index(my_flower2),their_flower) |
| | | our_list.remove(my_flower2) |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list) | n | print(our_list)my_fruit1 = input() |
| my_fruit1 = input() | | |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
| if par == 3 or par == 4 or par == 5: | | if par == 3 or par == 4 or par == 5: |
n | if strokes + 2 == par: | n | if strokes == par - 2: |
| print('Eagle') | | print('Eagle') |
n | elif strokes + 1 == par: | n | elif strokes == par - 1: |
| print('Birdie') | | print('Birdie') |
| elif strokes == par: | | elif strokes == par: |
| print('Par') | | print('Par') |
t | elif strokes-1 == par: | t | elif strokes == par + 1: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 49
Student ID: 425, P-Value: 1.88e-01
Nearest Neighbor ID: 123
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list[our_list.index(my_flower2)] = their_flower | n | our_list[our_list.index(my_flower2)]=their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list.pop(1) | n | our_list.remove(our_list[1]) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | par_number = (3, 4, 5) | n | par_allowed = (3, 4, 5) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
n | if par in par_number: | n | if par in par_allowed: |
| if strokes == par - 2: | | if par == strokes: |
| | | print('Par') |
| | | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
| if strokes == par - 1: | | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
t | if strokes == par: | t | elif par + 1 == strokes: |
| print('Par') | | |
| if strokes == par + 1: | | |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 50
Student ID: 336, P-Value: 1.92e-01
Nearest Neighbor ID: 450
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
n | your_list =[your_flower1, your_flower2] | n | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
n | if 3 <= par <= 5: | n | if par < 3 : |
| if (par - strokes) == 2: | | print("Error") |
| print('Eagle') | | elif par > 5: |
| elif (par - strokes) == 1: | | |
| print('Birdie') | | |
| elif par == strokes : | | |
| print("Par") | | |
| elif strokes == (par + 1): | | |
| print('Bogey') | | |
| else: | | |
| print('Error') | | print('Error') |
t | | t | elif strokes == (par - 2): |
| | | print('Eagle') |
| | | elif strokes == (par - 1): |
| | | print('Birdie') |
| | | elif strokes == par: |
| | | print('Par') |
| | | elif strokes > par: |
| | | print('Bogey') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 51
Student ID: 208, P-Value: 1.94e-01
Nearest Neighbor ID: 378
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
n | my_list = [my_flower1,my_flower2,my_flower3] | n | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1,your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list[5] = their_flower | n | |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list) | n | print(our_list)my_fruit1 = input() |
| my_fruit1 = input() | | |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
n | fruits = {my_fruit1,my_fruit2,my_fruit3} | n | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
n | | n | if par != 3 and par != 4 and par != 5: |
| | | print('Error') |
| if strokes == par-2: | | elif strokes == (par - 2): |
| print('Eagle') | | print('Eagle') |
n | elif strokes == par-1: | n | elif strokes == (par - 1): |
| print('Birdie') | | print('Birdie') |
| elif strokes == par: | | elif strokes == par: |
| print('Par') | | print('Par') |
n | elif strokes == par+1 and par >2: | n | elif strokes == (par + 1): |
| print('Bogey') | | print('Bogey') |
t | elif par != 3 or par != 4 or par != 5: | t | |
| print('Error') | | |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 52
Student ID: 372, P-Value: 1.96e-01
Nearest Neighbor ID: 460
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list.pop(1) | n | our_list.remove(my_flower3) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
n | | n | if par < 3 or par > 5: |
| | | score = 'Error' |
| if strokes == par - 2: | | elif strokes == par - 2: |
| score = 'Eagle' | | score = 'Eagle' |
n | if strokes == par - 1: | n | elif strokes == par - 1: |
| score = 'Birdie' | | score = 'Birdie' |
n | if strokes == par: | n | elif strokes == par: |
| score = 'Par' | | score = 'Par' |
n | if strokes == par + 1: | n | elif strokes == par + 1: |
| score = 'Bogey' | | score = 'Bogey' |
t | if par <= 2 or par >= 6: | t | |
| score = 'Error' | | |
| print(score) | | print(score) |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 53
Student ID: 460, P-Value: 1.96e-01
Nearest Neighbor ID: 372
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list.remove(my_flower3) | n | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
n | | n | if strokes == par - 2: |
| | | score = 'Eagle' |
| | | if strokes == par - 1: |
| | | score = 'Birdie' |
| | | if strokes == par: |
| | | score = 'Par' |
| | | if strokes == par + 1: |
| | | score = 'Bogey' |
| if par < 3 or par > 5: | | if par <= 2 or par >= 6: |
| score = 'Error' | | score = 'Error' |
t | elif strokes == par - 2: | t | |
| score = 'Eagle' | | |
| elif strokes == par - 1: | | |
| score = 'Birdie' | | |
| elif strokes == par: | | |
| score = 'Par' | | |
| elif strokes == par + 1: | | |
| score = 'Bogey' | | |
| print(score) | | print(score) |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 54
Student ID: 181, P-Value: 2.00e-01
Nearest Neighbor ID: 450
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list)my_fruit1 = input() | n | print(our_list) |
| | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
n | print(sorted(fruits))import math | n | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
n | if((par < 3) or (par > 5)): | n | if par < 3 : |
| print("Error") | | print("Error") |
t | elif((par - strokes) == 2): | t | elif par > 5: |
| | | print('Error') |
| | | elif strokes == (par - 2): |
| print("Eagle") | | print('Eagle') |
| elif((par - strokes) == 1): | | elif strokes == (par - 1): |
| print("Birdie") | | print('Birdie') |
| elif((par - strokes) == 0): | | elif strokes == par: |
| print("Par") | | print('Par') |
| elif((par - strokes) == -1): | | elif strokes > par: |
| print("Bogey") | | print('Bogey') |
| else: | | |
| print("Error") | | |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 55
Student ID: 103, P-Value: 2.04e-01
Nearest Neighbor ID: 194
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| num_strokes = int(input()) | | num_strokes = int(input()) |
n | parTuple = (3, 4, 5) | n | if 3 <= par <= 5: |
| if par not in parTuple: | | if num_strokes is par - 2: |
| | | print('Eagle') |
| | | elif num_strokes is par - 1: |
| | | print('Birdie') |
| | | elif num_strokes is par: |
| | | print('Par') |
| | | elif num_strokes is 1 + par: |
| | | print('Bogey') |
| | | else: |
| print('Error') | | print('Error') |
t | elif num_strokes == par - 2: | t | |
| print('Eagle') | | |
| elif num_strokes == par - 1: | | |
| print('Birdie') | | |
| elif num_strokes == par: | | |
| print('Par') | | |
| elif num_strokes == par + 1: | | |
| print('Bogey') | | |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 56
Student ID: 15, P-Value: 2.08e-01
Nearest Neighbor ID: 290
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | | n | strokes = int(input()) |
| par = int(input()) | | par = int(input()) |
n | score = int(input()) | n | |
| if par > 5 or par <3: | | if par > 6 or par < 3: |
| print('Error') | | print('Error') |
n | elif par == score: | n | elif strokes - par == 2: |
| | | print('Eagle') |
| | | elif strokes - par == 1: |
| | | print('Birdie') |
| | | elif strokes - par == 0: |
| print('Par') | | print('Par') |
t | elif score == par - 1: | t | elif strokes - par == -1: |
| print('Birdie') | | |
| elif score == par - 2: | | |
| print('Eagle') | | |
| elif score == par + 1: | | |
| print('Bogey') | | print('Bogey') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 57
Student ID: 411, P-Value: 2.12e-01
Nearest Neighbor ID: 194
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
n | strokes = int(input()) | n | num_strokes = int(input()) |
| if 3 <= par <= 5: | | if 3 <= par <= 5: |
| | | if num_strokes is par - 2: |
| | | print('Eagle') |
| | | elif num_strokes is par - 1: |
| | | print('Birdie') |
| if strokes > par: | | elif num_strokes is par: |
| | | print('Par') |
| | | elif num_strokes is 1 + par: |
| print('Bogey') | | print('Bogey') |
t | elif strokes == par: | t | |
| print('Par') | | |
| elif strokes >= par - 1: | | |
| print('Birdie') | | |
| else: | | |
| print('Eagle') | | |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 58
Student ID: 356, P-Value: 2.12e-01
Nearest Neighbor ID: 64
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
n | my_list = [my_flower1, my_flower2, my_flower3] | n | my_list= [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list= [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list= my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(my_flower3) | | our_list.remove(my_flower3) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
n | fruits = {my_fruit1, my_fruit2, my_fruit3} | n | fruits= {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
t | if par != 3 and par !=4 and par !=5: | t | if par == 3 or par == 4 or par == 5: |
| print("Error") | | if strokes - par == -2: |
| elif par - strokes == 2: | | |
| print("Eagle") | | print("Eagle") |
| elif par - strokes == 1: | | elif strokes - par == -1: |
| print("Birdie") | | print("Birdie") |
| elif par == strokes: | | elif strokes - par == 0: |
| print("Par") | | print("Par") |
| elif par - strokes == -1: | | elif strokes - par == 1: |
| print("Bogey") | | print("Bogey") |
| | | else: |
| | | print("Error") |
| else: | | else: |
| print("Error") | | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 59
Student ID: 408, P-Value: 2.12e-01
Nearest Neighbor ID: 64
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
n | my_list=[my_flower1,my_flower2,my_flower3] | n | my_list= [my_flower1, my_flower2, my_flower3] |
| your_list=[your_flower1,your_flower2] | | your_list= [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list= my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.remove(my_flower3) | | our_list.remove(my_flower3) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
n | fruits = {my_fruit1, my_fruit2, my_fruit3} | n | fruits= {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | par= int(input()) | n | par = int(input()) |
| strokes= int(input()) | | strokes = int(input()) |
| if par == 3 or par == 4 or par == 5: | | if par == 3 or par == 4 or par == 5: |
| if strokes - par == -2: | | if strokes - par == -2: |
| print("Eagle") | | print("Eagle") |
| elif strokes - par == -1: | | elif strokes - par == -1: |
| print("Birdie") | | print("Birdie") |
| elif strokes - par == 0: | | elif strokes - par == 0: |
| print("Par") | | print("Par") |
| elif strokes - par == 1: | | elif strokes - par == 1: |
| print("Bogey") | | print("Bogey") |
n | | n | else: |
| | | print("Error") |
| else: | | else: |
t | print('Error') | t | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 60
Student ID: 28, P-Value: 2.12e-01
Nearest Neighbor ID: 450
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
t | if (par < 3 or par > 5): | t | if par < 3 : |
| my_output = 'Error' | | print("Error") |
| | | elif par > 5: |
| | | print('Error') |
| elif (strokes == par - 2): | | elif strokes == (par - 2): |
| my_output = 'Eagle' | | print('Eagle') |
| elif (strokes == par - 1): | | elif strokes == (par - 1): |
| my_output = 'Birdie' | | print('Birdie') |
| elif(strokes == par): | | elif strokes == par: |
| my_output = 'Par' | | print('Par') |
| elif(strokes > par): | | elif strokes > par: |
| my_output = 'Bogey' | | print('Bogey') |
| elif (par < 3 or par > 5): | | |
| my_output = 'Error' | | |
| print(my_output) | | |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 61
Student ID: 49, P-Value: 2.32e-01
Nearest Neighbor ID: 450
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
n | our_list.append (their_flower) | n | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
n | our_list [1] = their_flower | n | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
n | our_list.remove (their_flower) | n | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
| if par < 3 : | | if par < 3 : |
| print("Error") | | print("Error") |
t | if 5 < par : | t | elif par > 5: |
| print("Error") | | print('Error') |
| if 3 <= par <= 5 and strokes == par - 2 : | | elif strokes == (par - 2): |
| print("Eagle") | | print('Eagle') |
| elif 3 <= par <= 5 and strokes == par - 1 : | | elif strokes == (par - 1): |
| print("Birdie") | | print('Birdie') |
| elif 3 <= par <= 5 and strokes == par : | | elif strokes == par: |
| print("Par") | | print('Par') |
| elif 3 <= par <= 5 and strokes == par + 1 : | | elif strokes > par: |
| print("Bogey") | | print('Bogey') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 62
Student ID: 247, P-Value: 2.32e-01
Nearest Neighbor ID: 378
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list)my_fruit1 = input() | | print(our_list)my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
n | stroke = int(input()) | n | strokes = int(input()) |
| if (par > 5) or (par < 3): | | if par != 3 and par != 4 and par != 5: |
| print('Error') | | print('Error') |
n | elif (stroke == par - 2): | n | elif strokes == (par - 2): |
| print('Eagle') | | print('Eagle') |
n | elif (stroke == par - 1): | n | elif strokes == (par - 1): |
| print('Birdie') | | print('Birdie') |
n | elif (stroke == par): | n | elif strokes == par: |
| print('Par') | | print('Par') |
t | elif (stroke == par + 1): | t | elif strokes == (par + 1): |
| print ('Bogey') | | print('Bogey') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 63
Student ID: 422, P-Value: 2.32e-01
Nearest Neighbor ID: 378
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list) | n | print(our_list)my_fruit1 = input() |
| my_fruit1 = input() | | |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
| if par != 3 and par != 4 and par != 5: | | if par != 3 and par != 4 and par != 5: |
| print('Error') | | print('Error') |
t | else: | t | elif strokes == (par - 2): |
| if par == strokes: | | |
| print('Par') | | |
| elif par + 1 == strokes: | | |
| print('Bogey') | | print('Eagle') |
| elif par - 1 == strokes: | | elif strokes == (par - 1): |
| print('Birdie') | | print('Birdie') |
| elif par - 2 == strokes: | | elif strokes == par: |
| | | print('Par') |
| | | elif strokes == (par + 1): |
| print('Eagle') | | print('Bogey') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 64
Student ID: 383, P-Value: 2.34e-01
Nearest Neighbor ID: 455
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| par = int(input()) | | par = int(input()) |
n | numStrokes = int(input()) | n | number_strokes = int(input()) |
| if 2 < par < 6: | | if par == 3 or par == 4 or par == 5: |
| if (numStrokes - par) == -2: | | if number_strokes == par - 2: |
| print("Eagle") | | print("Eagle") |
| elif (numStrokes - par) == -1: | | elif number_strokes == par -1: |
| print("Birdie") | | print("Birdie") |
n | elif numStrokes == par: | n | elif number_strokes == par: |
| print("Par") | | print("Par") |
n | elif (numStrokes - par) == 1: | n | elif number_strokes == par + 1: |
| print("Bogey") | | print("Bogey") |
t | else: | t | else: |
| print("Error") | | print("Error") |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 65
Student ID: 449, P-Value: 2.36e-01
Nearest Neighbor ID: 92
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
n | my_list = [my_flower1, my_flower2, my_flower3] | n | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list) | n | print(our_list)my_fruit1 = input() |
| my_fruit1 = input() | | |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
n | print(sorted(fruits)) | n | print(sorted(fruits))par_num = int(input()) |
| num_strokes = int(input()) | | num_strokes = int(input()) |
n | par = int(input()) | n | if ((par_num == 3) or (par_num == 4) or (par_num == 5)): |
| if num_strokes == 1: | | |
| print ('Error') | | |
| elif par == 3 or 4 or 5: | | |
| if (par - num_strokes == -2): | | if (num_strokes - par_num == -2): |
| print('Eagle') | | print('Eagle') |
n | elif (par - num_strokes == -1): | n | elif (num_strokes - par_num == -1): |
| print('Birdie') | | print('Birdie') |
n | elif (par - num_strokes == 0): | n | elif (num_strokes == par_num): |
| print('Par') | | print('Par') |
n | elif (par - num_strokes == 1): | n | elif (num_strokes - par_num == 1): |
| print('Bogey') | | print('Bogey') |
t | | t | else: |
| | | print('Error') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 66
Student ID: 92, P-Value: 2.36e-01
Nearest Neighbor ID: 449
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
n | my_list = [my_flower1, my_flower2, my_flower3] | n | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
n | print(our_list)my_fruit1 = input() | n | print(our_list) |
| | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
| fruits = {my_fruit1, my_fruit2, my_fruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
n | print(sorted(fruits))par_num = int(input()) | n | print(sorted(fruits)) |
| num_strokes = int(input()) | | num_strokes = int(input()) |
n | if ((par_num == 3) or (par_num == 4) or (par_num == 5)): | n | par = int(input()) |
| | | if num_strokes == 1: |
| | | print ('Error') |
| | | elif par == 3 or 4 or 5: |
| if (num_strokes - par_num == -2): | | if (par - num_strokes == -2): |
| print('Eagle') | | print('Eagle') |
n | elif (num_strokes - par_num == -1): | n | elif (par - num_strokes == -1): |
| print('Birdie') | | print('Birdie') |
n | elif (num_strokes == par_num): | n | elif (par - num_strokes == 0): |
| print('Par') | | print('Par') |
n | elif (num_strokes - par_num == 1): | n | elif (par - num_strokes == 1): |
| print('Bogey') | | print('Bogey') |
t | else: | t | |
| print('Error') | | |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 67
Student ID: 337, P-Value: 2.36e-01
Nearest Neighbor ID: 162
Student (left) and Nearest Neighbor (right).
f | my_flower1 = input() | f | my_flower1 = input() |
| my_flower2 = input() | | my_flower2 = input() |
| my_flower3 = input() | | my_flower3 = input() |
| your_flower1 = input() | | your_flower1 = input() |
| your_flower2 = input() | | your_flower2 = input() |
| their_flower = input() | | their_flower = input() |
| my_list = [my_flower1, my_flower2, my_flower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| your_list = [your_flower1, your_flower2] | | your_list = [your_flower1, your_flower2] |
| our_list = my_list + your_list | | our_list = my_list + your_list |
| print(our_list) | | print(our_list) |
| our_list.append(their_flower) | | our_list.append(their_flower) |
| print(our_list) | | print(our_list) |
| our_list[1] = their_flower | | our_list[1] = their_flower |
| print(our_list) | | print(our_list) |
| our_list.remove(their_flower) | | our_list.remove(their_flower) |
| print(our_list) | | print(our_list) |
| our_list.pop(1) | | our_list.pop(1) |
| print(our_list) | | print(our_list) |
| my_fruit1 = input() | | my_fruit1 = input() |
| my_fruit2 = input() | | my_fruit2 = input() |
| my_fruit3 = input() | | my_fruit3 = input() |
| your_fruit1 = input() | | your_fruit1 = input() |
| your_fruit2 = input() | | your_fruit2 = input() |
| their_fruit = input() | | their_fruit = input() |
n | fruits = { my_fruit1, my_fruit2, my_fruit3 } | n | fruits ={my_fruit1, my_fruit2,my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| fruits.add(your_fruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(their_fruit) | | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.add(your_fruit1) | | fruits.add(your_fruit1) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
| fruits.remove(my_fruit1) | | fruits.remove(my_fruit1) |
n | print(sorted(fruits)) | n | print(sorted(fruits))par_allowed = (3, 4, 5) |
| par = (3, 4, 5) | | |
| score = int(input()) | | par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
n | if score in par: | n | if par in par_allowed: |
| if score == strokes: | | if par == strokes: |
| print('Par') | | print('Par') |
n | elif (score - 2) == strokes: | n | elif par - 2 == strokes: |
| print('Eagle') | | print('Eagle') |
n | elif (score - 1) == strokes: | n | elif par -1 == strokes: |
| print('Birdie') | | print('Birdie') |
t | elif (score + 1) == strokes: | t | elif par + 1 == strokes: |
| print('Bogey') | | print('Bogey') |
| else: | | else: |
| print('Error') | | print('Error') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 68
Student ID: 304, P-Value: 1.00e+00
Nearest Neighbor ID: 254
Student (left) and Nearest Neighbor (right).
n | f1=input() | n | my_flower1 = input() |
| f2=input() | | my_flower2 = input() |
| f3=input() | | my_flower3 = input() |
| mylist=[f1,f2,f3] | | your_flower1 = input() |
| yf1=input() | | your_flower2 = input() |
| yf2=input() | | their_flower = input() |
| urlist=[yf1,yf2] | | my_list=[my_flower1, my_flower2, my_flower3] |
| | | your_list=[your_flower1, your_flower2] |
| ourlist=mylist+urlist | | our_list=my_list + your_list |
| theirf=input() | | |
| print(ourlist) | | print(our_list) |
| ourlist.append(theirf) | | our_list.append(their_flower) |
| print(ourlist) | | print(our_list) |
| ourlist[1]=theirf | | our_list[1]=their_flower |
| print(ourlist) | | print(our_list) |
| ourlist.remove(theirf) | | our_list.remove(our_list[1]) |
| print(ourlist) | | print(our_list) |
| del ourlist[1] | | our_list.remove(our_list[1]) |
| print(ourlist)mf1=input() | | print(our_list) |
| mf2=input() | | my_fruit1 = input() |
| mf3=input() | | my_fruit2 = input() |
| yf1=input() | | my_fruit3 = input() |
| yf2=input() | | your_fruit1 = input() |
| tf=input() | | your_fruit2 = input() |
| fruits=sorted([mf1,mf2,mf3]) | | their_fruit = input() |
| | | fruits={my_fruit1, my_fruit2, my_fruit3} |
| fruits=sorted(set(fruits)) | | print(sorted(fruits)) |
| print(fruits) | | fruits.add(your_fruit1) |
| fruits.append(yf1) | | fruits.add(your_fruit2) |
| fruits.append(yf2) | | |
| fruits=sorted(set(fruits)) | | print(sorted(fruits)) |
| print(fruits) | | fruits.add(their_fruit) |
| fruits.append(tf) | | |
| fruits=sorted(set(fruits)) | | print(sorted(fruits)) |
| print(fruits) | | fruits.add(your_fruit1) |
| fruits.append(yf1) | | |
| fruits=sorted(set(fruits)) | | print(sorted(fruits)) |
| print(fruits) | | |
| fruits.remove(mf1) | | fruits.remove(my_fruit1) |
| fruits=sorted(set(fruits)) | | print(sorted(fruits)) |
| print(fruits) | | |
| a=int(input()) | | par=int(input()) |
| b=int(input()) | | st=int(input()) |
| if 3<=a<=5: | | if par>5 or par<3: |
| if b==(a+1): | | |
| print('Bogey') | | |
| elif b==(a-1): | | |
| print('Birdie') | | |
| elif b==(a-2): | | |
| print('Eagle') | | |
| elif b==a: | | |
| print('Par') | | |
| else: | | |
| print('Error') | | print('Error') |
t | | t | elif st==par-2: |
| | | print('Eagle') |
| | | elif st==par-1: |
| | | print('Birdie') |
| | | elif st==par: |
| | | print('Par') |
| | | elif st==par+1: |
| | | print('Bogey') |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|
Page 69
Student ID: 432, P-Value: 1.00e+00
Nearest Neighbor ID: 33
Student (left) and Nearest Neighbor (right).
n | myFlower1 = input() | n | my_flower1 = input() |
| myFlower2 = input() | | my_flower2 = input() |
| myFlower3 = input() | | my_flower3 = input() |
| yourFlower1 = input() | | your_flower1 = input() |
| yourFlower2 = input() | | your_flower2 = input() |
| theirFlower = input() | | their_flower = input() |
| myList = [myFlower1, myFlower2, myFlower3] | | my_list = [my_flower1, my_flower2, my_flower3] |
| yourList = [yourFlower1, yourFlower2] | | your_list = [your_flower1, your_flower2] |
| ourList = myList + yourList | | our_list = my_list + your_list |
| print(ourList) | | print(our_list) |
| ourList.append(theirFlower) | | our_list.append(their_flower) |
| print(ourList) | | print(our_list) |
| ourList[ourList.index(myFlower2)] = theirFlower | | replace = our_list.index(my_flower2) |
| | | our_list[replace] = their_flower |
| print(ourList) | | print(our_list) |
| del ourList[1] | | our_list.remove(their_flower) |
| print(ourList) | | print(our_list) |
| del ourList[1] | | our_list.pop(1) |
| print(ourList)myFruit1 = input() | | print(our_list)my_fruit1 = input() |
| myFruit2 = input() | | my_fruit2 = input() |
| myFruit3 = input() | | my_fruit3 = input() |
| yourFruit1 = input() | | your_fruit1 = input() |
| yourFruit2 = input() | | your_fruit2 = input() |
| theirFruit = input() | | their_fruit = input() |
| fruits = {myFruit1, myFruit2, myFruit3} | | fruits = {my_fruit1, my_fruit2, my_fruit3} |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | fruits.add(yourFruit1) | n | fruits.add(your_fruit1) |
| fruits.add(yourFruit2) | | fruits.add(your_fruit2) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | fruits.add(theirFruit) | n | fruits.add(their_fruit) |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | fruits.add(yourFruit1) | n | |
| print(sorted(fruits)) | | print(sorted(fruits)) |
n | fruits.remove(myFruit1) | n | fruits.remove(my_fruit1) |
| print(sorted(fruits))par = int(input()) | | print(sorted(fruits))par = int(input()) |
| strokes = int(input()) | | strokes = int(input()) |
n | scoreMap = { | n | if par < 3 or par > 5: |
| -2: "Eagle", | | print('Error') |
| -1: "Birdie", | | |
| 0: "Par", | | |
| 1: "Bogey" | | |
| } | | |
| if (par < 3 or par > 5): print("Error") | | |
| else: | | else: |
t | try: | t | score = par - strokes |
| print(scoreMap[strokes - par]) | | if score == 2: |
| except: | | score = 'Eagle' |
| print("Strokes is too far from par...") | | if score == 1: |
| | | score = 'Birdie' |
| | | if score == 0: |
| | | score = 'Par' |
| | | if score == -1: |
| | | score = "Bogey" |
| | | print(score) |
Legends |
Colors |
Added |
Changed |
Deleted |
|
Links |
(f)irst change |
(n)ext change |
(t)op |
|