questions/08804-hard-two-sum/README.md
Given an array of integers nums and an integer target, return true if two numbers such that they add up to target.
For example
type sum1 = TwoSum<[3, 2, 4], 6> // true
type sum2 = TwoSum<[2, 7, 11, 15], 15> // false
<a href="../../README.md" target="_blank"></a> <a href="https://tsch.js.org/8804/answer" target="_blank"></a> <a href="https://tsch.js.org/8804/solutions" target="_blank"></a> <!--info-footer-end-->