mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
18 lines
227 B
Go
18 lines
227 B
Go
|
package main
|
||
|
|
||
|
func minimumDeletions(s string) int {
|
||
|
dp := make([]int, len(s)+1)
|
||
|
|
||
|
bs := 0
|
||
|
for i, c := range s {
|
||
|
if c == 'b' {
|
||
|
dp[i+1] = dp[i]
|
||
|
bs++
|
||
|
} else {
|
||
|
dp[i+1] = min(dp[i]+1, bs)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return dp[len(s)]
|
||
|
}
|