瀏覽代碼

solve leetcode 1

Mistivia 1 年之前
父節點
當前提交
e056b485e5
共有 1 個文件被更改,包括 16 次插入0 次删除
  1. 16 0
      leetcode/1-two-sum/solution.rkt

+ 16 - 0
leetcode/1-two-sum/solution.rkt

@@ -0,0 +1,16 @@
+#lang racket
+
+;; https://leetcode.com/problems/two-sum/description/
+
+(define/contract (two-sum nums target)
+  (-> (listof exact-integer?) exact-integer? (listof exact-integer?))
+  (define h (make-hash))
+  (define (loop nums index)
+    (define n (car nums))
+    (define diff (- target n))
+    (if (hash-has-key? h diff)
+        (list index (hash-ref h diff))
+        (let ()
+            (hash-set! h n index)
+            (loop (cdr nums) (+ 1 index)))))
+  (loop nums 0))