Move files

This commit is contained in:
Andras Schmelczer 2025-06-15 11:08:28 +01:00
commit 1fd6450484
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
68 changed files with 579 additions and 3359 deletions

View file

@ -0,0 +1,24 @@
# Both inserted the same prefix; this should get deduplicateed
parent: "hi "
left: "hi there "
right: "hi there my friend "
expected: "hi there my friend "
---
# The prefix of the 2nd appears on the 1st so it shouldn't get duplicatelicated
parent: "hi "
left: "hi there you "
right: "hi there my friend "
expected: "hi there my friend you "
---
parent: a
left: a b c
right: a b c d
expected: a b c d
---
parent: a
left: abc
right: abcd
expected: abcabcd