Max,<div><br></div><div>Two thoughts. One, if you did (apply assoc board (apply concat *vector-sequence-here*)), that would work. So, using that example list you gave, and blank hash-map {} for &quot;board&quot;:</div><div>
(apply concat [[[0 0] 1] [[0 1] 1] [[1 2] 1] [[0 3] 1]])</div><div>&gt;&gt; ([0 0] 1 [0 1] 1 [1 2] 1 [0 3] 1)</div><div>(apply assoc {} (apply concat [[[0 0] 1] [[0 1] 1] [[1 2] 1] [[0 3] 1]]))</div><div>&gt;&gt; {[0 0] 1, [0 1] 1, [1 2] 1, [0 3] 1}</div>
<div><br></div><div>You could also use reduce here. This would instead be like recursively calling assoc on each key value pair, then assoc on the return value of the previous assoc and the next key value pair, etc, until the last key value pair. As in, (reduce (fn [m [k v]] (assoc m k v)) board *vector-sequence-here*). With the example sequence and {} for board:</div>
<div>(reduce (fn [m [k v]] (assoc m k v)) {}  [[[0 0] 1] [[0 1] 1] [[1 2] 1] [[0 3] 1]])</div><div>&gt;&gt; {[0 0] 1, [0 1] 1, [1 2] 1, [0 3] 1}</div><div><br></div><div>Best,</div><div>-Omri</div><div><br></div><div><br>
<div class="gmail_quote">On Tue, Dec 6, 2011 at 7:59 PM, Maxwell William Fair Levit <span dir="ltr">&lt;<a href="mailto:mwl10@hampshire.edu">mwl10@hampshire.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hi, I&#39;m trying to get a sequence of vectors of vectors that looks like this:<br>
<br>
([[0 0] 1] [[0 1] 1] [[1 2] 1] [[0 3] 1])<br>
<br>
to be the key value pairs of a call to assoc<br>
<br>
The map I&#39;m associng into has key values that are two place vectors, so if I<br>
were to manualy input a mapping it would look like<br>
<br>
(assoc board [0 0] 1 [2 2] 5) and so on.<br>
<br>
Is there some way to un-sequence my list? Keep in mind that this is a specific<br>
arbitrary example, and my  sequence of vectors will vary in length throughout a<br>
single execution.<br>
<br>
-Max<br>
<br>
_______________________________________________<br>
Cs254f11 mailing list<br>
<a href="mailto:Cs254f11@lists.hampshire.edu">Cs254f11@lists.hampshire.edu</a><br>
<a href="https://lists.hampshire.edu/mailman/listinfo/cs254f11" target="_blank">https://lists.hampshire.edu/mailman/listinfo/cs254f11</a><br>
</blockquote></div><br></div>