T
tattvamasi@gmail.com
Guest
given a list a and element b whats the fastest way to add the element
to the end of thel list?
tconc procedure does not work if the list is not built using the
structure?
one of the ways I can think of without iterating over the list is,
reverse(cons(b reverse(a))
Are there any faster methods? ( If at all the above is fast...)
Thanks,
Partha
to the end of thel list?
tconc procedure does not work if the list is not built using the
structure?
one of the ways I can think of without iterating over the list is,
reverse(cons(b reverse(a))
Are there any faster methods? ( If at all the above is fast...)
Thanks,
Partha