| Author |
Comment/Response |
zzztimbo
|
12/23/06 3:22pm
I have a list manipulation question.
Let's say I have a 3 lists of lists.
a = { {1, 2, 3}, {4, 5, 6}, {7, 8, 9} }
b = { {0}, {1}, {1} }
c = { {22}, {33}, {44} }
What do I need to do to get create a list like this (from the above lists):
{ {1, 2, 3, 0, 22}, {4, 5, 6, 1, 33}, {7, 8, 9, 1, 44} }
Any help will be greatly appreciated.
URL: http://zzztimbo.blogspot.com, |
|