Welcome! Please see the About page for a little more info on how this works.

0 votes
in Syntax and reader by
(defn get-pins [observed]
  (let [num (count observed)
        keypad {\1 [1 2 4] \2 [2 1 5 3] \3 [3 2 6]
                \4 [4 1 5 7] \5 [5 2 6 8 4] \6 [6 3 5 9]
                \7 [7 4 8] \8 [8 5 9 0 7] \9 [9 6 8] \0 [0 8]}
        observed-map (zipmap [:a :b :c :d] (map keypad observed))]
    (case num
      1 (for [a (:a observed-map)]
          (str a))
      2 (for [a (:a observed-map)
              b (:b observed-map)]
         (str a b))
      3 (for [a (:a observed-map)
              b (:b observed-map)
              c (:c observed-map)]
         (str a b c))
      4 (for [a (:a observed-map)
              b (:b observed-map)
              c (:c observed-map)
              d (:d observed-map)]
         (str a b c d))
       "default")))

2 Answers

+1 vote
by

The following will do what you want:

(defn get-pins [observed]
  (let [num (count observed)
        keypad {\1 [1 2 4] \2 [2 1 5 3] \3 [3 2 6]
                \4 [4 1 5 7] \5 [5 2 6 8 4] \6 [6 3 5 9]
                \7 [7 4 8] \8 [8 5 9 0 7] \9 [9 6 8] \0 [0 8]}
        observed-map (zipmap [:a :b :c :d] (map keypad observed))]
    (for [a (:a observed-map) 
          b (or (:b observed-map) [nil]) 
          c (or (:c observed-map) [nil]) 
          d (or (:d observed-map) [nil])] 
      (str a b c d))))

The [nil] values cause a single "iteration" (with the value nil) and that produces an empty string when str is called on it.

by
thanks for the help
0 votes
by

What question are you asking here? Can you elaborate?

by
Is it possible to change the case statement to a less hard coded solution, like a single for statement and still have it work with various length strings.
by
No, `for` is not for that.
...