Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 559 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 559 Bytes

Learning text diffs [rust]

Steps

  1. file1 and file2 in <root>/ directory are taken as inputs
  2. file1 is treated as the original file. file2 is treated as the new one.
  3. Run the Myers Diff algorithm on them using cargo run --bin myers
  4. Every deleted line is printed begining with -
  5. Prefix for additions is + and for identical lines its two blank spaces.

Thanks

  1. Awesome explanation of Myer's Algo