Вяткина Анна, 619/2 группа CopyPaste 2669
Иван Сеченых, 521 (асвк+мк+мс) CopyPaste 1669
f1import astf1import ast
22
t3def copypaste(f1f2):t3def copypaste(onetwo):
4    ast1 = ast.parse(f1)4    treeA = ast.parse(one)
5    ast2 = ast.parse(f2)5    treeB = ast.parse(two)
6    for node1node2 in zip(ast.walk(ast1), ast.walk(ast2)):6    for AB in zip(ast.walk(treeA), ast.walk(treeB)):
7        if type(node1) != type(node2):7        if type(A) != type(B):
8            return False8            break
9    else:
9    return True10        return True
11    return False
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op