Brainfuck codificado em comprimento de execução, 49 bytes
Como não existem variáveis no Brainfuck, apenas usei entrada e saída padrão.
O código 32+
deve ser interpretado como 32 +
s pelo intérprete. Apenas substitua-os manualmente se o seu intérprete não suportar RLE.
>,[32->+<[16-<[>++<-]>[<+>-]>-<]>[<<.[-]>>-]<,]<.
Versão expandida (não RLE): (91 bytes)
>,[-------------------------------->+<[----------------<[>++<-]>[<+>-]>-<]>[<<.[-]>>-]<,]<.
O código assume que o EOF é codificado como 0.
Explicação
O seguinte layout é usado:
+---+---+------+
| x | a | flag |
+---+---+------+
Onde x
está o byte ASCII a ser impresso, a
é o caractere a da entrada padrão e flag
é 1 se houver a
um espaço.
>, Read a character a into the second cell
[ While not EOF:
32- Decrease a by 32 (a -= ' ')
>+< Set the flag to 1
[ If a was not a space:
16- Decrease by 16 more ('0' == 32+16)
<[>++<-] a += 2*x
>[<+>-] Move it back (x = a)
>-< Reset the flag, it was not a space.
]>
[ If a was a space (flag == 1):
<<.[-] Print and reset x
>>- Reset the flag
]
<, Read the next caracter a
]
<. Print the last character x