English 中文(简体)
Zip 2 list in Clojure into list of concatenated strings
原标题:Zip two lists in clojure into list of concatenated strings
  • 时间:2011-10-27 21:08:27
  •  标签:
  • list
  • clojure

Instead of zip-mapping two lists to get:

(zipmap ["a","b","c"] ["c","d","e"]) = {"c" "e", "b" "d", "a" "c"} 

我想将第一个名单的第一个要素与第二个名单的第一个要素混在一起,以便:

("ce","bd","ac") 

or in the reverse order.

最佳回答

您可使用<条码>。 它可以收集多种藏书,从每卷收集到下一个内容,并作为第一个论点(在收集材料中一分即行时)将其转换成功能。 因此,你可以凭空和收集。

表达

(map str ["a" "b" "c"] ["c" "d" "e"])

将首先使用“a”和“c”,然后使用“b”和“d”,然后用“c”和“e”。 结果是

("ac" "bd" "ce")

Since str can takes a variable number of arguments it can be used with any number of collections. Passing in four collections, like

(map str ["a" "b" "c"] ["d" "e" "f"] ["g" "h" "i"] ["j" "k" "l"])

评价

("adgj" "behk" "cfil")
问题回答

暂无回答




相关问题
Finding a class within list

I have a class (Node) which has a property of SubNodes which is a List of the Node class I have a list of Nodes (of which each Node may or may not have a list of SubNodes within itself) I need to be ...

How to flatten a List of different types in Scala?

I have 4 elements:List[List[Object]] (Objects are different in each element) that I want to zip so that I can have a List[List[obj1],List[obj2],List[obj3],List[obj4]] I tried to zip them and I ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

Is List<> better than DataSet for UI Layer in ASP.Net?

I want to get data from my data access layer into my business layer, then prepare it for use in my UI. So i wonder: is it better to read my data by DataReader and use it to fill a List<BLClasses&...

What is the benefit to using List<T> over IEnumerable<T>?

or the other way around? I use generic lists all the time. But I hear occasionally about IEnumerables, too, and I honestly have no clue (today) what they are for and why I should use them. So, at ...

灵活性:在滚动之前显示错误的清单

我有一份清单,在你滚动之前没有显示任何物品,然后这些物品就显示。 是否有任何人知道如何解决这一问题? 我尝试了叫人名单。

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签