G
Guest
I have 3 5-digit numbers that i'd like to combine into one 15 digit number,
and later rip back into the original 3 5-digit numbers.
I know i can do this easily with some string manipulations, but i'm pretty
sure i can do the same thing with some bitwise operation like bit shifting or
something.
basically, if i have the following 3 numbesr
12321
34543
67876
i'd like to end up with
123213454367876
any ideas?
and later rip back into the original 3 5-digit numbers.
I know i can do this easily with some string manipulations, but i'm pretty
sure i can do the same thing with some bitwise operation like bit shifting or
something.
basically, if i have the following 3 numbesr
12321
34543
67876
i'd like to end up with
123213454367876
any ideas?