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.
2 parents 42bfefd + e8ca66f commit 1eec68aCopy full SHA for 1eec68a
readme.md
@@ -12,9 +12,11 @@ diffCharacters("ABCBDAB", "BDCABA")
12
## API
13
14
*diffCharacters(oldString: string, newString: string)*
15
+
16
Compares two strings by character and returns a list `IDiffCharacter` objects (explained below)
17
18
*longestCommonSubsequence(a: string, b: string)*
19
20
Compares two strings by character and returns the [longest common subsequence](https://en.wikipedia.org/wiki/Longest_common_subsequence_problem)
21
22
## Types
@@ -44,4 +46,5 @@ for (const character of diffCharacters("boopa", "boop beep boppy")) {
44
46
console.log(finalString);
45
47
}
48
```
49
+
50
0 commit comments