mirror of https://gitee.com/namelin2022/ollama
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
266 B
35 lines
266 B
Example from Hunt and McIlroy, “An Algorithm for Differential File Comparison.”
|
|
https://www.cs.dartmouth.edu/~doug/diff.pdf
|
|
|
|
-- old --
|
|
a
|
|
b
|
|
c
|
|
d
|
|
e
|
|
f
|
|
g
|
|
-- new --
|
|
w
|
|
a
|
|
b
|
|
x
|
|
y
|
|
z
|
|
e
|
|
-- diff --
|
|
diff old new
|
|
--- old
|
|
+++ new
|
|
@@ -1,7 +1,7 @@
|
|
+w
|
|
a
|
|
b
|
|
-c
|
|
-d
|
|
+x
|
|
+y
|
|
+z
|
|
e
|
|
-f
|
|
-g
|
|
|