You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: solution/2000-2099/2068.Check Whether Two Strings are Almost Equivalent/README_EN.md
+68-26
Original file line number
Diff line number
Diff line change
@@ -57,35 +57,39 @@ The difference is 4, which is more than the allowed 3.
57
57
58
58
## Solutions
59
59
60
+
**Approach 1: Counting**
61
+
62
+
We can create an array $cnt$ of length $26$ to record the difference in the number of times each letter appears in the two strings. Then we traverse $cnt$, if any letter appears the difference in the number of times greater than $3$, then return `false`, otherwise return `true`.
63
+
64
+
The time complexity is $O(n)$ and the space complexity is $O(C)$. Where $n$ is the length of the string, and $C$ is the size of the character set, and in this question $C = 26$.
0 commit comments