questions/00476-extreme-sum/README.md
Implement a type Sum<A, B> that summing two non-negative integers and returns the sum as a string. Numbers can be specified as a string, number, or bigint.
For example,
type T0 = Sum<2, 3> // '5'
type T1 = Sum<'13', '21'> // '34'
type T2 = Sum<'328', 7> // '335'
type T3 = Sum<1_000_000_000_000n, '123'> // '1000000000123'
<a href="../../README.md" target="_blank"></a> <a href="https://tsch.js.org/476/answer" target="_blank"></a> <a href="https://tsch.js.org/476/solutions" target="_blank"></a> <!--info-footer-end-->