12 lines
250 B
Python
12 lines
250 B
Python
|
def check(ref, res):
|
||
|
shift = 0
|
||
|
while((ref[0] != res[0]) and (len(res)>1)):
|
||
|
res.pop(0)
|
||
|
shift += 1
|
||
|
length = min(len(ref), len(res))
|
||
|
errors = 0
|
||
|
for i in range(length):
|
||
|
if ref.pop(0) != res.pop(0):
|
||
|
errors += 1
|
||
|
return shift, length, errors
|