Back to General discussions forum
Problem #30, Reverse String is currently impossible due to not terminating input with a null character '\0'.
This causes you to be unable to take in all input due to it never telling you when to stop collecting input.
For example:
,[>,]<[.<]
My solution which works for reversing strings and has worked on other challenge sites. This cannot work here due to being stuck waiting for a null character to terminate input.
Proof it works on codewars for example :

This also means that every other problem where you can choose brainfuck as a language but DOESN'T either:
Is most likely also impossible.
The easiest solution for this issue would be to always append a null character to terminate input if the language is set to brainfuck.