In DrScheme, how can I create an association list from 2 lists?
For example, I have,
y = ( 1 2 3 )
x = ( a b c )
and I want
z = ((a 1) (b 2) (c 3))
|
Assuming Scheme (since your last 2 questions are on Scheme):
Result: http://www.ideone.com/DPjeM |
|||||
|
|
In C# 4.0 you can do it this way;
Hope this helps! |
|||
|
|
|
In Python it's pretty easy, just
.
|
||||
|
|
|
PHP has array_combine(). e.g. from the manual:
|
|||
|
|
|
Depending on the language you're using there maty exist a "zip" function that does this, see this stackoverflow question: zip to interleave two lists |
|||
|
|
|
And perl:
Also for the sake of illustrating how this is done in q. (kdb+/q)
|
|||
|
|
[code-golf]has a specific rule. You mean[language-agnostic]? – KennyTM Nov 2 '10 at 15:05