We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65287ef commit 9ca5b6aCopy full SHA for 9ca5b6a
18.py
@@ -0,0 +1,29 @@
1
+import difflib
2
+
3
4
+def main():
5
+ left, right = first_step()
6
+ second_step(left, right)
7
8
9
+def first_step():
10
+ deltas = open("swan/deltas", 'r')
11
+ left = ""
12
+ right = ""
13
+ while True:
14
+ line = deltas.readline()
15
+ if line:
16
+ left += line[:53]
17
+ left += "\n"
18
+ right += line[56:]
19
+ else:
20
+ break
21
+ return left, right
22
23
24
+def second_step(left, right):
25
+ pass
26
27
28
+if __name__ == "__main__":
29
+ main()
0 commit comments