mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
17 lines
227 B
Go
17 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)]
|
|
}
|