[go: up one dir, main page]

Learn and/or show off your brainfuck skills in this fun little puzzle game!

StatusReleased
PlatformsHTML5
Rating
Rated 4.7 out of 5 stars
(3 total ratings)
AuthorsHypnotic Owl, Crabman
GenrePuzzle, Educational
TagsBrain Training, Difficult, Math, mind-bending
Average sessionA few minutes
LanguagesEnglish
InputsMouse

Comments

Log in with itch.io to leave a comment.

This game is diffcult and confusing because I only completed the first 2 levels. Interesting game idea.

(1 edit)

The fourth level keeps giving me an error despite successful solution.

(8 edits)

Found the acceptable solution, but alternates exist. 


Solution below: 










,[.,]

(+1)

Hm, that's weird. I really just check the output, not what you did to get there, no hardcoded solutions or anything. Can you give me the solution that threw an error so I can check it out?

If I flip the order of operations in @Sebungifto's code, the execution will fail.

+[,.]

The execution should stop when there is a read operation but no more input exists.  

There should be no any judgements to the execution position of the source code. And zero should not be inputed as a fallback.

Not sure I agree with that. I think reading a null character is a valid operation and terminating execution there would be too limiting. Many of the other challenges depend on you being able to read the input until it's completed, i.e. until a null character is read and breaks you out of the loop, allowing you to perform further operations on the read values. You wouldn't be able to do that if the program stopped there or the cell wasn't changed, which would trap you in an infinite loop that keeps on printing the last read character.

I suppose I could allow the result even with an additional null character printed, but making special allowances doesn't seem in the spirit of the challenge. It's to print that exact string, not that string plus null, so in this case and with the way my interpreter works, I wouldn't consider yours a valid solution since it produces output that is not exactly equal. Other interpreters might handle this differently, but this makes the most sense to me for mine.

I agree with you if you are writing an command line interpretor for brainfuck. But this is a game.

Maybe I am taking the game "Human Resource Machine" into consideration. That's weird when I produced an output as expected but the game did not finished.