mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
14 lines
180 B
Go
14 lines
180 B
Go
package main
|
|
|
|
func appendCharacters(s string, t string) int {
|
|
si, ti := 0, 0
|
|
|
|
for si < len(s) && ti < len(t) {
|
|
if s[si] == t[ti] {
|
|
ti++
|
|
}
|
|
si++
|
|
}
|
|
|
|
return len(t) - ti
|
|
}
|