gpt4 book ai didi

dictionary - 在 map 中反向查找

转载 作者:行者123 更新时间:2023-12-03 07:05:35 25 4
gpt4 key购买 nike

我必须使用值从映射中提取键。除了自己实现反向查找之外,还有其他方法可以做到这一点吗?

最佳答案

我认为 map-invert 是执行此操作的正确方法。

From the docs:

;; Despite being in clojure.set, this has nothing to do with sets. 

user=> (map-invert {:a 1, :b 2})
{2 :b, 1 :a}

;; If there are duplicate keys, one is chosen:

user=> (map-invert {:a 1, :b 1})
{1 :b}

;; I suspect it'd be unwise to depend on which key survives the clash.

关于dictionary - 在 map 中反向查找,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10612093/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com