solution.rkt 470 B

12345678910111213141516
  1. #lang racket
  2. ;; https://leetcode.com/problems/two-sum/description/
  3. (define/contract (two-sum nums target)
  4. (-> (listof exact-integer?) exact-integer? (listof exact-integer?))
  5. (define h (make-hash))
  6. (define (loop nums index)
  7. (define n (car nums))
  8. (define diff (- target n))
  9. (if (hash-has-key? h diff)
  10. (list index (hash-ref h diff))
  11. (let ()
  12. (hash-set! h n index)
  13. (loop (cdr nums) (+ 1 index)))))
  14. (loop nums 0))