• + 0 comments

    wanted to show my Clojure solution

    (defn string-mingling
      [a b] (->> (mapcat list (seq a) (seq b))
                 (apply str)))
    
    (println (string-mingling (read-line) (read-line)))