Page 1

Student ID: 495, P-Value: 0.00e+00

Nearest Neighbor ID: 273

Student (left) and Nearest Neighbor (right).


t1x0 = int(input())t1x0 = int(input())
2x1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
4lst = [x0, x1]4lst = [x0, x1]
5for i in range(0, N - 2):5for i in range(0, N - 2):
6    x2 = x0 + x16    x2 = x0 + x1
7    lst.append((x2))7    lst.append((x2))
8    x0 = x18    x0 = x1
9    x1 = x29    x1 = x2
10print(lst)userInput = input()10print(lst)userInput = input()
11while(userInput != "Done" and userInput != "done" and userInput != "d"):11while(userInput != "Done" and userInput != "done" and userInput != "d"):
12    for i in range(len(userInput) - 1, -1, -1):12    for i in range(len(userInput) - 1, -1, -1):
13        print(userInput[i], end="")13        print(userInput[i], end="")
14    print()14    print()
15    userInput = input()n = int(input())15    userInput = input()n = int(input())
16val = []16val = []
17for i in range(n):17for i in range(n):
18    val.append(float(input()))18    val.append(float(input()))
19for i in range(n):19for i in range(n):
20    your_value = val[i]/max(val)20    your_value = val[i]/max(val)
21    print('{:.2f}'.format(your_value)) 21    print('{:.2f}'.format(your_value)) 
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 2

Student ID: 273, P-Value: 0.00e+00

Nearest Neighbor ID: 495

Student (left) and Nearest Neighbor (right).


t1x0 = int(input())t1x0 = int(input())
2x1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
4lst = [x0, x1]4lst = [x0, x1]
5for i in range(0, N - 2):5for i in range(0, N - 2):
6    x2 = x0 + x16    x2 = x0 + x1
7    lst.append((x2))7    lst.append((x2))
8    x0 = x18    x0 = x1
9    x1 = x29    x1 = x2
10print(lst)userInput = input()10print(lst)userInput = input()
11while(userInput != "Done" and userInput != "done" and userInput != "d"):11while(userInput != "Done" and userInput != "done" and userInput != "d"):
12    for i in range(len(userInput) - 1, -1, -1):12    for i in range(len(userInput) - 1, -1, -1):
13        print(userInput[i], end="")13        print(userInput[i], end="")
14    print()14    print()
15    userInput = input()n = int(input())15    userInput = input()n = int(input())
16val = []16val = []
17for i in range(n):17for i in range(n):
18    val.append(float(input()))18    val.append(float(input()))
19for i in range(n):19for i in range(n):
20    your_value = val[i]/max(val)20    your_value = val[i]/max(val)
21    print('{:.2f}'.format(your_value)) 21    print('{:.2f}'.format(your_value)) 
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 3

Student ID: 56, P-Value: 2.22e-16

Nearest Neighbor ID: 67

Student (left) and Nearest Neighbor (right).


n1x0=int(input())n1x0=int(input()) 
2x1=int(input())2x1=int(input())
3N = int(input())3N = int(input())
4c=04c=0
5list_w=[]5list_w=[]
6while c<N:6while c<N:
7    list_w.append(x0)7    list_w.append(x0)
8    term=x0+x18    term=x0+x1
9    x0=x19    x0=x1
10    x1=term10    x1=term
11    c+=111    c+=1
12print(list_w)12print(list_w)
n13string1 = []n13string1 = [] 
14while True:14while True:
15    string2 = input()15    string2 = input()
16    if string2 == "Done":16    if string2 == "Done":
17        break17        break
18    elif string2 == 'done':18    elif string2 == 'done':
19        break19        break
20    elif string2 == 'd':20    elif string2 == 'd':
21        break21        break
22    string2 = string2[::-1]22    string2 = string2[::-1]
23    string1.append(string2)23    string1.append(string2)
24for reverse in string1:24for reverse in string1:
25    print(reverse)25    print(reverse)
t26nums=[]t26nums=[] 
27in_num=int(input())27in_num=int(input())
28for i in range(in_num):28for i in range(in_num):
29    new_val=float(input())29    new_val=float(input())
30    nums.append(new_val)30    nums.append(new_val)
31maxium=max(nums)31maxium=max(nums)
32for i in range(in_num):32for i in range(in_num):
33    print(f'{(nums[i]/maxium):.2f}')33    print(f'{(nums[i]/maxium):.2f}')
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 4

Student ID: 67, P-Value: 2.22e-16

Nearest Neighbor ID: 56

Student (left) and Nearest Neighbor (right).


n1x0=int(input()) n1x0=int(input())
2x1=int(input())2x1=int(input())
3N = int(input())3N = int(input())
4c=04c=0
5list_w=[]5list_w=[]
6while c<N:6while c<N:
7    list_w.append(x0)7    list_w.append(x0)
8    term=x0+x18    term=x0+x1
9    x0=x19    x0=x1
10    x1=term10    x1=term
11    c+=111    c+=1
12print(list_w)12print(list_w)
n13string1 = [] n13string1 = []
14while True:14while True:
15    string2 = input()15    string2 = input()
16    if string2 == "Done":16    if string2 == "Done":
17        break17        break
18    elif string2 == 'done':18    elif string2 == 'done':
19        break19        break
20    elif string2 == 'd':20    elif string2 == 'd':
21        break21        break
22    string2 = string2[::-1]22    string2 = string2[::-1]
23    string1.append(string2)23    string1.append(string2)
24for reverse in string1:24for reverse in string1:
25    print(reverse)25    print(reverse)
t26nums=[] t26nums=[]
27in_num=int(input())27in_num=int(input())
28for i in range(in_num):28for i in range(in_num):
29    new_val=float(input())29    new_val=float(input())
30    nums.append(new_val)30    nums.append(new_val)
31maxium=max(nums)31maxium=max(nums)
32for i in range(in_num):32for i in range(in_num):
33    print(f'{(nums[i]/maxium):.2f}')33    print(f'{(nums[i]/maxium):.2f}')
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 5

Student ID: 318, P-Value: 3.24e-14

Nearest Neighbor ID: 273

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
4lst = [x0, x1]4lst = [x0, x1]
5for i in range(0, N - 2):5for i in range(0, N - 2):
6    x2 = x0 + x16    x2 = x0 + x1
7    lst.append((x2))7    lst.append((x2))
8    x0 = x18    x0 = x1
9    x1 = x29    x1 = x2
10print(lst)userInput = input()10print(lst)userInput = input()
n11while(userInput != "Done" and userInput != "done" and userInput!= "d"):n11while(userInput != "Done" and userInput != "done" and userInput != "d"):
12    for i in range(len(userInput) - 1, -1, -1):12    for i in range(len(userInput) - 1, -1, -1):
13        print(userInput[i], end="")13        print(userInput[i], end="")
14    print()14    print()
15    userInput = input()n = int(input())15    userInput = input()n = int(input())
16val = []16val = []
17for i in range(n):17for i in range(n):
18    val.append(float(input()))18    val.append(float(input()))
19for i in range(n):19for i in range(n):
t20        your_value = val[i]/max(val)t20    your_value = val[i]/max(val)
21        print('{:.2f}'.format(your_value))21    print('{:.2f}'.format(your_value)) 
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 6

Student ID: 193, P-Value: 4.58e-10

Nearest Neighbor ID: 386

Student (left) and Nearest Neighbor (right).


nn1xsubzero = int(input())
1x0 = int(input())2xsubone = int(input())
2x1 = int(input())
3N = int(input())3N = int(input())
n4list = [x0, x1]n4list = [xsubzero, xsubone]
5for i in range(0, N - 2):5for i in range(0, N - 2):
n6    x = x0 + x1n6    x = xsubzero + xsubone
7    list.append(x)7    list.append(x)
n8    x0 = x1n8    xsubzero = xsubone
9    x1 = x9    xsubone = x
10print(list)while True:10print(list)while True:
11    string = input()11    string = input()
12    if (string == 'Done' or string == 'done' or string == 'd'):12    if (string == 'Done' or string == 'done' or string == 'd'):
13        break13        break
14    for i in range(len(string)-1, -1, -1):14    for i in range(len(string)-1, -1, -1):
15        print(string[i], end='')15        print(string[i], end='')
t16    print()t16    print()n = int(input())
17n = int(input())
18value = []17value = []
19for i in range(n):18for i in range(n):
20    value.append(float(input()))19    value.append(float(input()))
21for i in range(n):20for i in range(n):
22    your_value = value[i]/max(value)21    your_value = value[i]/max(value)
23    print('{:.2f}'.format(your_value))22    print('{:.2f}'.format(your_value))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 7

Student ID: 386, P-Value: 4.58e-10

Nearest Neighbor ID: 193

Student (left) and Nearest Neighbor (right).


n1xsubzero = int(input())n
2xsubone = int(input())1x0 = int(input())
2x1 = int(input())
3N = int(input())3N = int(input())
n4list = [xsubzero, xsubone]n4list = [x0, x1]
5for i in range(0, N - 2):5for i in range(0, N - 2):
n6    x = xsubzero + xsubonen6    x = x0 + x1
7    list.append(x)7    list.append(x)
n8    xsubzero = xsubonen8    x0 = x1
9    xsubone = x9    x1 = x
10print(list)while True:10print(list)while True:
11    string = input()11    string = input()
12    if (string == 'Done' or string == 'done' or string == 'd'):12    if (string == 'Done' or string == 'done' or string == 'd'):
13        break13        break
14    for i in range(len(string)-1, -1, -1):14    for i in range(len(string)-1, -1, -1):
15        print(string[i], end='')15        print(string[i], end='')
t16    print()n = int(input())t16    print()
17n = int(input())
17value = []18value = []
18for i in range(n):19for i in range(n):
19    value.append(float(input()))20    value.append(float(input()))
20for i in range(n):21for i in range(n):
21    your_value = value[i]/max(value)22    your_value = value[i]/max(value)
22    print('{:.2f}'.format(your_value))23    print('{:.2f}'.format(your_value))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 8

Student ID: 490, P-Value: 2.29e-09

Nearest Neighbor ID: 273

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
4lst = [x0, x1]4lst = [x0, x1]
5for i in range(0, N - 2):5for i in range(0, N - 2):
6    x2 = x0 + x16    x2 = x0 + x1
7    lst.append((x2))7    lst.append((x2))
8    x0 = x18    x0 = x1
9    x1 = x29    x1 = x2
n10print(lst)n10print(lst)userInput = input()
11user_input = input()
12while(user_input != "Done" and user_input != "done" and user_input != "d"):11while(userInput != "Done" and userInput != "done" and userInput != "d"):
13    for i in range(len(user_input) - 1, -1, -1):12    for i in range(len(userInput) - 1, -1, -1):
14        print(user_input[i], end="")13        print(userInput[i], end="")
15    print()14    print()
t16    user_input = input()t15    userInput = input()n = int(input())
17n = int(input())
18val = []16val = []
19for i in range(n):17for i in range(n):
20    val.append(float(input()))18    val.append(float(input()))
21for i in range(n):19for i in range(n):
22    your_value = val[i]/max(val)20    your_value = val[i]/max(val)
23    print('{:.2f}'.format(your_value)) 21    print('{:.2f}'.format(your_value)) 
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 9

Student ID: 316, P-Value: 2.70e-08

Nearest Neighbor ID: 273

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
4lst = [x0, x1]4lst = [x0, x1]
5for i in range(0, N - 2):5for i in range(0, N - 2):
6    x2 = x0 + x16    x2 = x0 + x1
7    lst.append((x2))7    lst.append((x2))
8    x0 = x18    x0 = x1
9    x1 = x29    x1 = x2
10print(lst)userInput = input()10print(lst)userInput = input()
n11while(userInput != 'Done' and userInput != 'done' and userInput != 'd'):n11while(userInput != "Done" and userInput != "done" and userInput != "d"):
12    for i in range(len(userInput) - 1, -1, -1):12    for i in range(len(userInput) - 1, -1, -1):
n13        print(userInput[i], end='')n13        print(userInput[i], end="")
14    print()14    print()
t15    userInput = input()t15    userInput = input()n = int(input())
16n = int(input())
17value = []16val = []
18for i in range (n):17for i in range(n):
19    value.append(float(input()))18    val.append(float(input()))
20for i in range (n):19for i in range(n):
21    your_value = value[i]/max(value)20    your_value = val[i]/max(val)
22    print("{:.2f}".format(your_value))21    print('{:.2f}'.format(your_value)) 
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 10

Student ID: 384, P-Value: 1.55e-06

Nearest Neighbor ID: 325

Student (left) and Nearest Neighbor (right).


n1x0= int(input())n1x0 = int(input())
2x1=int(input())2x1 = int(input())
3N=int(input())3N = int(input())
4w=0 4w = 0
5list1=[]5list_1 = []
6while w < N:6while w < N:
n7    list1.append(x0)n7    list_1.append(x0)
8    term = x0 + x18    term = x0 + x1
n9    x0=x1n9    x0 = x1
10    x1=term10    x1 = term
11    w+=111    w += 1
12print(list1)12print(list_1)str1 = []
13str1 = []
14while True:13while True:
n15    str2= input()n14    str2 = input()
16    if str2 == "done":15    if str2 == "Done":
17        break16        break
n18    elif str2 =="Done":n17    elif str2 == 'done':
19        break18        break
t20    elif str2 =="d":t19    elif str2 == 'd':
21        break20        break
22    str2 = str2[::-1]21    str2 = str2[::-1]
23    str1.append(str2)22    str1.append(str2)
24for reverse in str1:23for reverse in str1:
25    print(reverse)nums=[]24    print(reverse)nums=[]
26num_nums=int(input())25num_nums=int(input())
27for i in range(num_nums):26for i in range(num_nums):
28    val=float(input())27    val=float(input())
29    nums.append(val)28    nums.append(val)
30max=max(nums)29max=max(nums)
31for i in range(num_nums):30for i in range(num_nums):
32    print(f'{(nums[i]/max):.2f}')31    print(f'{(nums[i]/max):.2f}')
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 11

Student ID: 325, P-Value: 1.55e-06

Nearest Neighbor ID: 384

Student (left) and Nearest Neighbor (right).


n1x0 = int(input())n1x0= int(input())
2x1 = int(input())2x1=int(input())
3N = int(input())3N=int(input())
4w = 04w=0 
5list_1 = []5list1=[]
6while w < N:6while w < N:
n7    list_1.append(x0)n7    list1.append(x0)
8    term = x0 + x18    term = x0 + x1
n9    x0 = x1n9    x0=x1
10    x1 = term10    x1=term
11    w += 111    w+=1
12print(list_1)str1 = []12print(list1)
13str1 = []
13while True:14while True:
n14    str2 = input()n15    str2= input()
15    if str2 == "Done":16    if str2 == "done":
16        break17        break
n17    elif str2 == 'done':n18    elif str2 =="Done":
18        break19        break
t19    elif str2 == 'd':t20    elif str2 =="d":
20        break21        break
21    str2 = str2[::-1]22    str2 = str2[::-1]
22    str1.append(str2)23    str1.append(str2)
23for reverse in str1:24for reverse in str1:
24    print(reverse)nums=[]25    print(reverse)nums=[]
25num_nums=int(input())26num_nums=int(input())
26for i in range(num_nums):27for i in range(num_nums):
27    val=float(input())28    val=float(input())
28    nums.append(val)29    nums.append(val)
29max=max(nums)30max=max(nums)
30for i in range(num_nums):31for i in range(num_nums):
31    print(f'{(nums[i]/max):.2f}')32    print(f'{(nums[i]/max):.2f}')
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 12

Student ID: 478, P-Value: 2.16e-06

Nearest Neighbor ID: 333

Student (left) and Nearest Neighbor (right).


n1x0 = int(input())n1x0=int(input())
2x1 = int(input())2x1=int(input())
3N = int(input())3N=int(input())
4list = [x0,x1]4lt=[x0,x1]
5for i in range(0, N-2):5for i in range(0, N - 2):
6    x2 = x0 + x16    x2 = x0 + x1
n7    list.append((x2))n7    lt.append((x2))
8    x0 = x18    x0 = x1
9    x1 = x29    x1 = x2
n10print(list)while True:n10print(lt)
11while True:
11    a = input()12    a=input()
12    if(a=='d' or a == 'done' or a == 'Done'):13    if(a=='d'or a=='done' or a=='Done'):
13        break14        break
14    else:15    else:
t15        print(a[:: -1])t16        print(a[::-1])
16n = int(input())17n = int(input())
17data = []18data = []
18largest = None19largest = None
19for i in range(n):20for i in range(n):
20    num = float(input())21    num = float(input())
21    data.append(num)22    data.append(num)
22    if largest == None or num > largest:23    if largest == None or num > largest:
23        largest = num24        largest = num
24for i in range(n):25for i in range(n):
25    data[i] = data[i] / largest26    data[i] = data[i] / largest
26    print('{:.2f}'.format(data[i]))27    print('{:.2f}'.format(data[i]))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 13

Student ID: 333, P-Value: 2.16e-06

Nearest Neighbor ID: 478

Student (left) and Nearest Neighbor (right).


n1x0=int(input())n1x0 = int(input())
2x1=int(input())2x1 = int(input())
3N=int(input())3N = int(input())
4lt=[x0,x1]4list = [x0,x1]
5for i in range(0, N - 2):5for i in range(0, N-2):
6    x2 = x0 + x16    x2 = x0 + x1
n7    lt.append((x2))n7    list.append((x2))
8    x0 = x18    x0 = x1
9    x1 = x29    x1 = x2
n10print(lt)n10print(list)while True:
11while True:
12    a=input()11    a = input()
13    if(a=='d'or a=='done' or a=='Done'):12    if(a=='d' or a == 'done' or a == 'Done'):
14        break13        break
15    else:14    else:
t16        print(a[::-1])t15        print(a[:: -1])
17n = int(input())16n = int(input())
18data = []17data = []
19largest = None18largest = None
20for i in range(n):19for i in range(n):
21    num = float(input())20    num = float(input())
22    data.append(num)21    data.append(num)
23    if largest == None or num > largest:22    if largest == None or num > largest:
24        largest = num23        largest = num
25for i in range(n):24for i in range(n):
26    data[i] = data[i] / largest25    data[i] = data[i] / largest
27    print('{:.2f}'.format(data[i]))26    print('{:.2f}'.format(data[i]))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 14

Student ID: 215, P-Value: 2.31e-06

Nearest Neighbor ID: 333

Student (left) and Nearest Neighbor (right).


f1x0=int(input())f1x0=int(input())
2x1=int(input())2x1=int(input())
3N=int(input())3N=int(input())
n4lst=[x0,x1]n4lt=[x0,x1]
5for i in range(0,N-2):5for i in range(0, N - 2):
6    x2=x0 + x16    x2 = x0 + x1
7    lst.append((x2))7    lt.append((x2))
8    x0=x18    x0 = x1
9    x1=x29    x1 = x2
10print(lst)while True:10print(lt)
11while True:
11    a = input()12    a=input()
12    if(a=='d' or a=='done' or a=='Done'):13    if(a=='d'or a=='done' or a=='Done'):
13        break14        break
14    else:15    else:
n15        print(a[::-1])n = int(input())n16        print(a[::-1])
17n = int(input())
16data = []18data = []
17largest = None19largest = None
18for i in range(n):20for i in range(n):
19    num = float(input())21    num = float(input())
20    data.append(num)22    data.append(num)
n21    if largest == None or num> largest:n23    if largest == None or num > largest:
22        largest = num24        largest = num
23for i in range(n):25for i in range(n):
t24    data[i]= data[i]/largestt26    data[i] = data[i] / largest
25    print('{:.2f}'.format(data[i]))27    print('{:.2f}'.format(data[i]))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 15

Student ID: 217, P-Value: 2.88e-05

Nearest Neighbor ID: 258

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
n4first = [x0, x1]n4lst = [x0, x1]
5for i in range(0, N - 2):5for i in range(0, N - 2):
6    x2 = x0 + x16    x2 = x0 + x1
n7    first.append((x2))n7    lst.append((x2))
8    x0 = x18    x0 = x1
9    x1 = x29    x1 = x2
n10print(first)while True:n10print(lst)while True:
11    user=input()11    a=input()
12    if (user=='d' or user=='done' or user=='Done'):12    if(a=='d' or a=='done' or a=='Done'):
13        break13        break
14    else:14    else:
t15        print(user[::-1])num = int(input())t15        print(a[::-1])n = int(input())
16value = []16val = []
17for i in range(num):17for i in range(n):
18    value.append(float(input()))18    val.append(float(input()))
19for i in range(num):19for i in range(n):
20    your_value = value[i]/max(value)20    your_value = val[i]/max(val)
21    print('{:.2f}'.format(your_value)) 21    print(f'{your_value:.2f}')
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 16

Student ID: 258, P-Value: 2.88e-05

Nearest Neighbor ID: 217

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
n4lst = [x0, x1]n4first = [x0, x1]
5for i in range(0, N - 2):5for i in range(0, N - 2):
6    x2 = x0 + x16    x2 = x0 + x1
n7    lst.append((x2))n7    first.append((x2))
8    x0 = x18    x0 = x1
9    x1 = x29    x1 = x2
n10print(lst)while True:n10print(first)while True:
11    a=input()11    user=input()
12    if(a=='d' or a=='done' or a=='Done'):12    if (user=='d' or user=='done' or user=='Done'):
13        break13        break
14    else:14    else:
t15        print(a[::-1])n = int(input())t15        print(user[::-1])num = int(input())
16val = []16value = []
17for i in range(n):17for i in range(num):
18    val.append(float(input()))18    value.append(float(input()))
19for i in range(n):19for i in range(num):
20    your_value = val[i]/max(val)20    your_value = value[i]/max(value)
21    print(f'{your_value:.2f}')21    print('{:.2f}'.format(your_value)) 
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 17

Student ID: 79, P-Value: 1.61e-04

Nearest Neighbor ID: 478

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
n4lst = [x0, x1]n4list = [x0,x1]
5for i in range(0, N - 2):5for i in range(0, N-2):
6    x2 = x0 + x16    x2 = x0 + x1
n7    lst.append((x2))n7    list.append((x2))
8    x0 = x18    x0 = x1
9    x1 = x29    x1 = x2
n10print(lst)while True:n10print(list)while True:
11    string = str(input()) 11    a = input()
12    if string == "Done" or string == "done" or string == "d":12    if(a=='d' or a == 'done' or a == 'Done'):
13        break13        break
14    else:14    else:
t15        print(string[::-1]) t15        print(a[:: -1])
16n = int(input())16n = int(input())
17data = []17data = []
18largest = None18largest = None
19for i in range(n):19for i in range(n):
20    num = float(input())20    num = float(input())
21    data.append(num)21    data.append(num)
22    if largest == None or num > largest:22    if largest == None or num > largest:
23        largest = num23        largest = num
24for i in range(n):24for i in range(n):
25    data[i] = data[i] / largest25    data[i] = data[i] / largest
26    print('{:.2f}'.format(data[i]))26    print('{:.2f}'.format(data[i]))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 18

Student ID: 364, P-Value: 4.30e-04

Nearest Neighbor ID: 125

Student (left) and Nearest Neighbor (right).


n1x0 =  int(input())n1x0 = int(input())
2x1 =  int(input())2x1 = int(input())
3N =  int(input())3N = int(input())
4lst =  [x0, x1]4lst = [x0, x1]
5for i  in range(0, N - 2):5for i in range(0, N-2):
6    x2  =  x0  +  x16    x2 = x0 + x1
7    lst.append((x2))7    lst.append((x2))
n8    x0  =  x1n8    x0 = x1
9    x1  =  x29    x1 = x2
10print (lst)while True:10print(lst)while True:
11    a  =  input()11    a = input()
12    if(a == "d" or a == "done" or a == "Done"):12    if(a=="d"or a =="done" or a=="Done"):
13        break13        break 
14    else:14    else: 
15        print(a[: :-1])size = int(input())15        print(a[::-1])
16size = int(input())
16inputList = []17inputList = []
n17for  i  in range(size):n18for i in range(size):
18    inputList.append (float(input()))19    inputList.append(float(input()))
19maxValue =  None20maxValue = None
20for x  in  inputList:21for x in inputList:
21    if maxValue == None or maxValue<x:22    if maxValue==None or maxValue<x:
22        maxValue = x23        maxValue = x
t23for x in  inputList:t24for x in inputList:
24    print ("%.2f"%(x/maxValue))25    print("%.2f"%(x/maxValue))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 19

Student ID: 125, P-Value: 4.30e-04

Nearest Neighbor ID: 364

Student (left) and Nearest Neighbor (right).


n1x0 = int(input())n1x0 =  int(input())
2x1 = int(input())2x1 =  int(input())
3N = int(input())3N =  int(input())
4lst = [x0, x1]4lst =  [x0, x1]
5for i in range(0, N-2):5for i  in range(0, N - 2):
6    x2 = x0 + x16    x2  =  x0  +  x1
7    lst.append((x2))7    lst.append((x2))
n8    x0 = x1n8    x0  =  x1
9    x1 = x29    x1  =  x2
10print(lst)while True:10print (lst)while True:
11    a = input()11    a  =  input()
12    if(a=="d"or a =="done" or a=="Done"):12    if(a == "d" or a == "done" or a == "Done"):
13        break 13        break
14    else: 14    else:
15        print(a[::-1])15        print(a[: :-1])size = int(input())
16size = int(input())
17inputList = []16inputList = []
n18for i in range(size):n17for  i  in range(size):
19    inputList.append(float(input()))18    inputList.append (float(input()))
20maxValue = None19maxValue =  None
21for x in inputList:20for x  in  inputList:
22    if maxValue==None or maxValue<x:21    if maxValue == None or maxValue<x:
23        maxValue = x22        maxValue = x
t24for x in inputList:t23for x in  inputList:
25    print("%.2f"%(x/maxValue))24    print ("%.2f"%(x/maxValue))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 20

Student ID: 353, P-Value: 1.01e-03

Nearest Neighbor ID: 203

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
n4listvals = [x0,x1]n4ist = [x0,x1]
5for i in range(0, N-2): 5i = 2
6while i < N:
6    x2 = x0 + x17    nth = x0 + x1
7    listvals.append((x2))8    ist.append(nth)
8    x0 = x19    x0 = x1
n9    x1 = x2n10    x1 = nth    
10print(listvals)11    i += 1
11text = input()12print(ist)text = input()
12while(text != 'Done' and text != 'done' and text != 'd'):13while(text != 'Done' and text != 'done' and text != 'd'):
13    for i in range(len(text) - 1, -1, -1):14    for i in range(len(text) - 1, -1, -1):
14        print(text[i], end='')15        print(text[i], end='')
15    print()16    print()
n16    text = input()my_value = int(input())n17    text = input()
18values = int(input())
17listvalue = []19list_values = []
18for i in range(my_value):20for i in range(values):
19    my_input = float(input())21    my_input = float(input())
t20    listvalue.append(my_input)t22    list_values.append(my_input)
21maxvalue = max(listvalue)23max_value = max(list_values)
22for x in range (my_value):24for x in range (values):
23    print(f'{listvalue[x]/maxvalue:.2f}')25    print(f'{list_values[x]/max_value:.2f}')
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 21

Student ID: 203, P-Value: 1.01e-03

Nearest Neighbor ID: 353

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
n4ist = [x0,x1]n4listvals = [x0,x1]
5i = 25for i in range(0, N-2): 
6while i < N:
7    nth = x0 + x16    x2 = x0 + x1
8    ist.append(nth)7    listvals.append((x2))
9    x0 = x18    x0 = x1
n10    x1 = nth    n9    x1 = x2
11    i += 110print(listvals)
12print(ist)text = input()11text = input()
13while(text != 'Done' and text != 'done' and text != 'd'):12while(text != 'Done' and text != 'done' and text != 'd'):
14    for i in range(len(text) - 1, -1, -1):13    for i in range(len(text) - 1, -1, -1):
15        print(text[i], end='')14        print(text[i], end='')
16    print()15    print()
n17    text = input()n16    text = input()my_value = int(input())
18values = int(input())
19list_values = []17listvalue = []
20for i in range(values):18for i in range(my_value):
21    my_input = float(input())19    my_input = float(input())
t22    list_values.append(my_input)t20    listvalue.append(my_input)
23max_value = max(list_values)21maxvalue = max(listvalue)
24for x in range (values):22for x in range (my_value):
25    print(f'{list_values[x]/max_value:.2f}')23    print(f'{listvalue[x]/maxvalue:.2f}')
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 22

Student ID: 242, P-Value: 1.96e-03

Nearest Neighbor ID: 316

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
n4lst = [x0,x1]n4lst = [x0, x1]
5for i in range (0,N-2):5for i in range(0, N - 2):
6    x2 = x0 +x16    x2 = x0 + x1
7    lst.append((x2))7    lst.append((x2))
8    x0 = x18    x0 = x1
9    x1 = x29    x1 = x2
n10print(lst)userinput = input()n10print(lst)userInput = input()
11while(userinput!='d' and userinput!='Done' and userinput!='done'):11while(userInput != 'Done' and userInput != 'done' and userInput != 'd'):
12    for i in range(len(userinput) - 1, -1, -1):12    for i in range(len(userInput) - 1, -1, -1):
13        print(userinput[i], end="")13        print(userInput[i], end='')
14    print()14    print()
t15    userinput = input()t15    userInput = input()
16N = int(input())16n = int(input())
17val=[]17value = []
18for i in range(N):18for i in range (n):
19    val.append(float(input()))19    value.append(float(input()))
20for i in range(N):20for i in range (n):
21    your_value = val[i]/max(val)21    your_value = value[i]/max(value)
22    print(f'{your_value:.2f}')22    print("{:.2f}".format(your_value))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 23

Student ID: 123, P-Value: 8.78e-03

Nearest Neighbor ID: 316

Student (left) and Nearest Neighbor (right).


n1x_i = int(input())n1x0 = int(input())
2x_1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
n4plus_int = 0n4lst = [x0, x1]
5fib_list = []
6fib_list.append(x_i)
7fib_list.append(x_1)
8for i in range(N-2):5for i in range(0, N - 2):
9    plus_int = x_i + x_16    x2 = x0 + x1
10    fib_list.append(plus_int)7    lst.append((x2))
11    x_i = x_18    x0 = x1
12    x_1 = plus_int9    x1 = x2
13print(fib_list)user_input = input()10print(lst)userInput = input()
14while(user_input != 'Done' and user_input != 'done' and user_input != 'd'):11while(userInput != 'Done' and userInput != 'done' and userInput != 'd'):
15    for i in range(len(user_input) -1, -1, -1):12    for i in range(len(userInput) - 1, -1, -1):
16        print(user_input[i], end='')13        print(userInput[i], end='')
17    print()14    print()
n18    user_input = input()n15    userInput = input()
19n = int(input())16n = int(input())
20value = []17value = []
n21for i in range(n):n18for i in range (n):
22    value.append(float(input()))19    value.append(float(input()))
n23for i in range(n):n20for i in range (n):
24    your_value = value[i]/max(value)21    your_value = value[i]/max(value)
t25    print('{:.2f}'.format(your_value))t22    print("{:.2f}".format(your_value))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 24

Student ID: 467, P-Value: 1.16e-02

Nearest Neighbor ID: 490

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
n4my_list = [x0, x1]n4lst = [x0, x1]
5num = 05for i in range(0, N - 2):
6for i in range(2, (N), 1):6    x2 = x0 + x1
7    num = my_list[i-1] + my_list[i-2]7    lst.append((x2))
8    my_list.append(num)8    x0 = x1
9print(my_list)user_input = input()9    x1 = x2
10print(lst)
11user_input = input()
10while(user_input != "Done" and user_input != "done" and user_input != "d"):12while(user_input != "Done" and user_input != "done" and user_input != "d"):
n11    for i in range((len(user_input)-1), -1, -1):n13    for i in range(len(user_input) - 1, -1, -1):
12        print(user_input[i], end='')14        print(user_input[i], end="")
13    print()15    print()
t14    user_input = input()num_values = int(input())t16    user_input = input()
17n = int(input())
15values = []18val = []
16for i in range(num_values):19for i in range(n):
17    values.append(float(input()))20    val.append(float(input()))
18for i in range(num_values):21for i in range(n):
19    new_values = values[i]/max(values)22    your_value = val[i]/max(val)
20    print('{:.2f}'.format(new_values))23    print('{:.2f}'.format(your_value)) 
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 25

Student ID: 340, P-Value: 1.26e-02

Nearest Neighbor ID: 242

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
n4list = [x0,x1]n4lst = [x0,x1]
5for i in range(0,N-2):5for i in range (0,N-2):
6    x2 = x0 + x16    x2 = x0 +x1
7    list.append(x2)7    lst.append((x2))
8    x0 = x18    x0 = x1
9    x1 = x29    x1 = x2
n10print(list)s = input()n10print(lst)userinput = input()
11while (s != 'Done') and (s != 'done') and (s != 'd'):11while(userinput!='d' and userinput!='Done' and userinput!='done'):
12    for i in range(len(s) - 1, -1, -1):12    for i in range(len(userinput) - 1, -1, -1):
13        print(s[i], end='')13        print(userinput[i], end="")
14    print()14    print()
t15    s = input()num = int(input())t15    userinput = input()
16list = []16N = int(input())
17val=[]
17for i in range(num):18for i in range(N):
18    list.append(float(input()))19    val.append(float(input()))
19for i in range(num):20for i in range(N):
20    val = list[i]/max(list)21    your_value = val[i]/max(val)
21    print(f'{val:.2f}')22    print(f'{your_value:.2f}')
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 26

Student ID: 491, P-Value: 1.51e-02

Nearest Neighbor ID: 340

Student (left) and Nearest Neighbor (right).


n1x0=int(input())n1x0 = int(input())
2x1=int(input())2x1 = int(input())
3N=int(input())3N = int(input())
4list=[x0,x1]4list = [x0,x1]
5for num in range(0,N-2):5for i in range(0,N-2):
6    x2=x0+x16    x2 = x0 + x1
7    list.append(x2)7    list.append(x2)
n8    x0=list[-2]n8    x0 = x1
9    x1=list[-1]9    x1 = x2
10print(list)10print(list)s = input()
11hi= input()11while (s != 'Done') and (s != 'done') and (s != 'd'):
12while (hi!='done' and hi!='Done' and hi!='d'):
13    for stri in range(len(hi) - 1, -1, -1):12    for i in range(len(s) - 1, -1, -1):
14        print(hi[stri],end='')13        print(s[i], end='')
15    print()14    print()
n16    hi= input()n15    s = input()num = int(input())
17num = int(input())
18list = []16list = []
n19for no in range(num):n17for i in range(num):
20    list.append(float(input()))18    list.append(float(input()))
t21for no in range(num):t19for i in range(num):
22    val = list[no]/max(list)20    val = list[i]/max(list)
23    print(f'{val:.2f}') 21    print(f'{val:.2f}')
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 27

Student ID: 192, P-Value: 2.65e-02

Nearest Neighbor ID: 258

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
4lst = [x0, x1]4lst = [x0, x1]
5for i in range(0, N - 2):5for i in range(0, N - 2):
6    x2 = x0 + x16    x2 = x0 + x1
n7    lst.append(x2)n7    lst.append((x2))
8    x0 = x18    x0 = x1
9    x1 = x29    x1 = x2
10print(lst)while True:10print(lst)while True:
n11    text = input()n11    a=input()
12    if text == 'Done' or text == 'done' or text == 'd':12    if(a=='d' or a=='done' or a=='Done'):
13        break13        break
n14    reverse_text = ''n14    else:
15    for ch in text:15        print(a[::-1])n = int(input())
16        reverse_text = ch + reverse_text16val = []
17    print(reverse_text)n = int(input())
18num = []
19for i in range(n):17for i in range(n):
n20    num.append(float(input()))n18    val.append(float(input()))
21for i in range(n):19for i in range(n):
t22    value = (num[i] / max(num))t20    your_value = val[i]/max(val)
23    print(f'{value:.2f}') 21    print(f'{your_value:.2f}')
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 28

Student ID: 199, P-Value: 5.99e-02

Nearest Neighbor ID: 118

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
n3N = int(input())n3n = int(input())
4list = [x0, x1]4list = [x0, x1]
n5for i in range(N-2):n5for i in range(n-2):
6    x= x1 +x06    x = x0+x1
7    list.append(x)7    list.append(x)
8    x0 = x18    x0 = x1
9    x1 = x9    x1 = x
n10print(list)words = input()n10print(list)text = input()
11wordlist = [words]11textl = [text]
12while (words != 'done' and words != 'Done' and words != 'd'):12while text != 'done' and text != 'Done' and text != 'd':
13    for i in range(len(words)):13    for i in range(len(text)):
14        i += 1 14        i += 1
15        print(words[-i], end='')15        print(text[-i], end ='')
16    if i == len(words):16    if i == len(text):
17        print()17        print()
t18        words = input ()nums = []t18        text = input()
19data = []
19inputnums = int(input())20indata = int(input())
20for i in range(inputnums):21for i in range(indata):
21    value = float(input())22    floating = float(input())
22    nums.append(value)23    data.append(floating)
23max = max(nums)24maxd = max(data)
24for i in range(inputnums):25for i in range(indata):
25    print(f'{(nums[i]/max):.2f}')26    print(f'{(data[i]/maxd):.2f}')
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 29

Student ID: 118, P-Value: 5.99e-02

Nearest Neighbor ID: 199

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
n3n = int(input())n3N = int(input())
4list = [x0, x1]4list = [x0, x1]
n5for i in range(n-2):n5for i in range(N-2):
6    x = x0+x16    x= x1 +x0
7    list.append(x)7    list.append(x)
8    x0 = x18    x0 = x1
9    x1 = x9    x1 = x
n10print(list)text = input()n10print(list)words = input()
11textl = [text]11wordlist = [words]
12while text != 'done' and text != 'Done' and text != 'd':12while (words != 'done' and words != 'Done' and words != 'd'):
13    for i in range(len(text)):13    for i in range(len(words)):
14        i += 114        i += 1 
15        print(text[-i], end ='')15        print(words[-i], end='')
16    if i == len(text):16    if i == len(words):
17        print()17        print()
t18        text = input()t18        words = input ()nums = []
19data = []
20indata = int(input())19inputnums = int(input())
21for i in range(indata):20for i in range(inputnums):
22    floating = float(input())21    value = float(input())
23    data.append(floating)22    nums.append(value)
24maxd = max(data)23max = max(nums)
25for i in range(indata):24for i in range(inputnums):
26    print(f'{(data[i]/maxd):.2f}')25    print(f'{(nums[i]/max):.2f}')
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 30

Student ID: 129, P-Value: 6.82e-02

Nearest Neighbor ID: 193

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
3N = int(input())3N = int(input())
n4lst = [x0, x1]n4list = [x0, x1]
5for i in range(0, N - 2):5for i in range(0, N - 2):
n6    x2 = x0 + x1n6    x = x0 + x1
7    lst.append((x2))7    list.append(x)
8    x0 = x18    x0 = x1
n9    x1 = x2n9    x1 = x
10print(lst)while True:10print(list)while True:
11    string = input()11    string = input()
n12    if (string == 'done') or (string == 'Done') or (string == 'd'):n12    if (string == 'Done' or string == 'done' or string == 'd'):
13        break13        break
t14    else:t14    for i in range(len(string)-1, -1, -1):
15        print(string[::-1])15        print(string[i], end='')
16    print()
16integer = int(input())17n = int(input())
17num_list = []18value = []
18for i in range(integer):19for i in range(n):
19    num_list.append(float(input()))20    value.append(float(input()))
20max_val = max(num_list)
21for i in range(integer):     21for i in range(n):
22    num_list[i] = num_list[i] / max_val22    your_value = value[i]/max(value)
23    print(f'{num_list[i]:.2f}')23    print('{:.2f}'.format(your_value))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 31

Student ID: 450, P-Value: 8.28e-02

Nearest Neighbor ID: 79

Student (left) and Nearest Neighbor (right).


n1def fibonacci_list(n):n1x0 = int(input())
2    if n <= 0:2x1 = int(input())
3        return []
4    result = []
5    a = int(input())3N = int(input())
6    b = int(input())4lst = [x0, x1]
7    for i in range(n):5for i in range(0, N - 2):
8        result.append(a)6    x2 = x0 + x1
9        a, b = b, a + b7    lst.append((x2))
10    return result8    x0 = x1
11print(fibonacci_list(25))while True:9    x1 = x2
10print(lst)while True:
12    string = str(input())11    string = str(input()) 
13    if string == "Done" or string == "done" or string == "d":12    if string == "Done" or string == "done" or string == "d":
14        break13        break
15    else:14    else:
n16        print(string[::-1])n = int(input())n15        print(string[::-1]) 
16n = int(input())
17data = []17data = []
18largest = None18largest = None
19for i in range(n):19for i in range(n):
20    num = float(input())20    num = float(input())
21    data.append(num)21    data.append(num)
22    if largest == None or num > largest:22    if largest == None or num > largest:
n23        largest == numn23        largest = num
24for i in range(n):24for i in range(n):
25    data[i] = data[i] / largest25    data[i] = data[i] / largest
t26    print('(:.2f)'.format(data[i]))t26    print('{:.2f}'.format(data[i]))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 32

Student ID: 8, P-Value: 9.79e-02

Nearest Neighbor ID: 192

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
n3n = int(input())n3N = int(input())
4result = [x0, x1]4lst = [x0, x1]
5for i in range(0, n - 2):5for i in range(0, N - 2):
6    x2 = x0 + x16    x2 = x0 + x1
n7    result.append(x2)n7    lst.append(x2)
8    x0 = x18    x0 = x1
9    x1 = x29    x1 = x2
n10print(result)list = []n10print(lst)while True:
11while True:
12    text = input()11    text = input()
n13    if text == 'Done':n12    if text == 'Done' or text == 'done' or text == 'd':
14        break13        break
t15    elif text == 'done':t14    reverse_text = ''
16        break15    for ch in text:
17    elif text == 'd':16        reverse_text = ch + reverse_text
18        break17    print(reverse_text)n = int(input())
19    text = text[::-1]18num = []
20    list.append(text)
21for i in list:
22    print(i)
23list = []
24no_nums = int(input())
25for i in range(no_nums):19for i in range(n):
26    val = float(input())20    num.append(float(input()))
27    list.append(val)
28maximum = max(list)
29for i in range(no_nums):21for i in range(n):
30    print(f'{(list[i]/maximum):.2f}')22    value = (num[i] / max(num))
23    print(f'{value:.2f}') 
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 33

Student ID: 375, P-Value: 9.99e-01

Nearest Neighbor ID: 34

Student (left) and Nearest Neighbor (right).


nn1x0 = int(input())
1x1=int(input())2x1 = int(input())
2x2=int(input())
3n=int(input())3n = int(input())
4if n==10:4list=[x0,x1]
5    x3=x1+x25for value in range(0, n-2):
6    x4=x2+x3
7    x5=x3+x4
8    x6=x4+x5
9    x7=x5+x6
10    x8=x6+x7
11    x9=x7+x8
12    x10=x8+x9
13    print('[{}, {}, {}, {}, {}, {}, {}, {}, {}, {}]'.format(x1,x2,x3,x4,x5,x6,x7
>,x8,x9,x10)) 
14elif n==20:
15    x3=x1+x2
16    x4=x2+x3
17    x5=x3+x4
18    x6=x4+x5
19    x7=x5+x6
20    x8=x6+x7
21    x9=x7+x8
22    x10=x8+x9
23    x11=x9+x10
24    x12=x10+x116    x2=x0+x1
25    x13=x11+x127    list.append((x2))
26    x14=x12+x13
27    x15=x13+x14
28    x16=x14+x15
29    x17=x15+x16
30    x18=x16+x17
31    x19=x17+x18
32    x20=x18+x19
33    print('[{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, 
>{}, {}, {}]'.format(x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15,x16,x17,x 
>18,x19,x20)) 
34elif n==25:
35    x3=x1+x28    x0=x1
36    x4=x2+x39    x1=x2
37    x5=x3+x410print(list)line = ' ' 
38    x6=x4+x511reverse = ''
39    x7=x5+x6
40    x8=x6+x7
41    x9=x7+x8
42    x10=x8+x9
43    x11=x9+x10
44    x12=x10+x11
45    x13=x11+x12
46    x14=x12+x13
47    x15=x13+x14
48    x16=x14+x15
49    x17=x15+x16
50    x18=x16+x17
51    x19=x17+x18
52    x20=x18+x19
53    x21=x19+x20
54    x22=x20+x21
55    x23=x21+x22
56    x24=x22+x23
57    x25=x23+x24
58    x26=x24+x25
59    print('[{}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, 
>{}, {}, {}, {}, {}, {}, {}, {}]'.format(x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x 
>13,x14,x15,x16,x17,x18,x19,x20,x21,x22,x23,x24,x25)) 
60while True:12while True:
n61    words = input()n13    line = input()
62    if words == 'done':14    if (line == 'Done') or (line == 'done') or (line == 'd'):  
63        break15        break
n64    elif words == 'Done':n16    else:
65        break17        print(line[:: -1])num_values = int(input())
66    elif words == 'd':
67        break
68if words =='done':
69    print('ereht olleH')
70    print('yeH')
71elif words =='d':
72    print('a')
73    print('ba')
74    print('cba')
75elif words =='Done':
76    print('!!!ym hO')N=int(input())
77xList=[]18xList=[]
n78for _ in range(N):n19for _ in range(num_values):
79    newVal=int(float(input()))20    newVal=float(input())
80    xList.append(newVal)21    xList.append(newVal)
81for x in xList:22for x in xList:
t82    your_value=(x/max(xList))t23    new_value = x / max(xList)
83    print(f'{your_value:.2f}')24    print(f'{new_value:.2f}')
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op




Page 34

Student ID: 182, P-Value: 9.93e-01

Nearest Neighbor ID: 160

Student (left) and Nearest Neighbor (right).


f1x0 = int(input())f1x0 = int(input())
2x1 = int(input())2x1 = int(input())
t3num_items = int(input())t3N = int(input())
4fib_list = [x0, x1]4myList = []
5x = 25i = 1
6for z in range(2, num_items):6while i <= N:
7    xn = fib_list[x-1] + fib_list[x-2]
8    fib_list.append(xn)7    myList.append(x0)
8    x2 = x0 + x1
9    x0 = x1
10    x1 = x2
9    x += 111    i += 1
10print(fib_list)import re12print(myList)string = input()
11strig_im_going_insane = input()13stringList = []
12list_of_lists = []14while (string != "Done" and string != "done" and string != "d"):
13list_of_lists.append(str(strig_im_going_insane))15    stringList.append(string)
14while strig_im_going_insane != "Done" and strig_im_going_insane != "done" and st16    string = input()
>rig_im_going_insane != "d": 
15    list_of_lists.append(str(input()))17for n in range(len(stringList)):
16    strig_im_going_insane = list_of_lists[-1]18    print(stringList[n][::-1])myList = []
17x = 019total = int(input())
18if "Done" in list_of_lists:20n = 1
19    list_of_lists.remove("Done")21while n <= total:
20elif "done" in list_of_lists:22    value = float(input())
21    list_of_lists.remove("done")23    myList.append(float(value))
22elif "d"in list_of_lists:
23    list_of_lists.remove("d")
24for x in range(len(list_of_lists)):
25    list = ' '.join(reversed(str(list_of_lists[x])))
26    list2 = str(list).replace("[","")
27    list3 = str(list2).replace("]","")
28    list4 = str(list3).replace(",","")
29    list5 = str(list4).replace("'","")
30    list6 = ' '.join([''.join(i.split()) for i in re.split(r' {2,}',list5)])
31    print(list6)
32    x += 124    n += 1
33amt_float = int(input())25max_list = max(myList)
34num_float = 026for i in range(len(myList)):
35list_floats = []27    your_value = myList[i] / max_list
36while num_float < amt_float:28    print(f'{your_value:.2f}')
37    list_floats.append(float(input()))
38    num_float += 1
39num_float = 0
40max_num = max(list_floats)
41while num_float < amt_float:
42    list_floats[num_float] = list_floats[num_float] /  max_num
43    num_float += 1
44num_float = 0
45while num_float < amt_float:
46    print(f'{list_floats[num_float]:.2f}')
47    num_float += 1
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op