Given an arbitrarily long number, how can I output its double? I know how to multiply small numbers together as long as the result is <10, but what about larger integers like 32984335, and doubling something like that? I don’t know the right way to handle something like this.
Share
This is the algorithm you need to implement:
All these steps consists of basic brainfuck idioms, so it should be easy to implement.