https://github.com/monyone/myers-diff-linear-space
"Optimal alignments in linear space" implement in TypeScript
https://github.com/monyone/myers-diff-linear-space
Last synced: about 1 month ago
JSON representation
"Optimal alignments in linear space" implement in TypeScript
- Host: GitHub
- URL: https://github.com/monyone/myers-diff-linear-space
- Owner: monyone
- License: mit
- Created: 2026-05-03T14:18:37.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-03T14:47:19.000Z (2 months ago)
- Last Synced: 2026-05-03T16:28:05.963Z (2 months ago)
- Language: TypeScript
- Size: 20.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Myers Diff Linear Space
```typescript
import diff from '@monyone/myers-diff-linear-space';
diff([1, 2, 3], [3, 2, 3]);
// [ { type: 'delete', from: 0 }, { type: 'insert', to: 0 } ]
```