47. implement Multiply<A, B>
分享给更多人
-通过 / -执行
Implement Multiply<A, B>
type A = Multiply<1, 0> // 0type B = Multiply<4, 6> // 24
Only need to consider non-negative integers.
-通过 / -执行
Implement Multiply<A, B>
type A = Multiply<1, 0> // 0type B = Multiply<4, 6> // 24
Only need to consider non-negative integers.