44. implement ReplaceAll<S, F, T>

  - accepted / - tried

Just like String.prototype.replaceAll(),

please implement ReplaceAll<S, F, T>.

type A = ReplaceAll<'aba', 'b', ''> // 'aa'
type B = ReplaceAll<'ababbab', 'b', ''> // 'aaa'

10分間以内で解いてみて

(10)