What is the most efficient way to concatenate two positive integers in Mathematica 7?
cc[123, 4567] >> 1234567
What about more than two?
cc[123, 4, 567, 89] >> 123456789
|
What is the most efficient way to concatenate two positive integers in Mathematica 7?
What about more than two?
|
|||
|
|
|
This will be slightly faster for many integers, than your last solution:
A more concise alternative is to accept a single argument, assuming it to be a list, rather than a sequence, of numbers to concatenate:
which is based on |
||||
|
|
|
This only works properly for short integers because the output must be machine size, but it is the fastest I found:
For longer integers, the fastest I could find is:
For concatenating many integers, the following was faster than
|
|||||||||||||
|