我有2个列表让用户列表(list-usr)和(usr-index),我想从这些列表中创建哈希映射很像
(def list-usr [196 186 244]) (def idx-usr [0 1 2])
我如何(hash-map {196 0 186 1 244 2})从2个列表中形成?
(hash-map {196 0 186 1 244 2})
clojure hashmap
clojure ×1
hashmap ×1