
I feel like a fool misunderstanding the decoders 😭😭 Little Box
my hard coded solution? Less elegant

my hard coded solution? Less elegant
I was hoping if anyone could explain to me on which solution is "better" (the top one being the examples solution) , they both look the same tbh but was just curious which one was more efficient or more correct I guess??
I'm sorry if this is a breach of any of the community rules, but I just did this level so many times now and each one of them was an excruciating experience. Just looking at the level makes me want to puke. If you can just paste your solution here, I'd be more than glad.
Hi everyone,
I have been working on a hobby project: an online simulation game to build electronic circuits and I would be so happy to get some feedback on it! :-)
You can just try the app here (it's free of course): https://chipgrid.io/
I made a short demo video showing how it works. I also created a subreddit, r/Chipgrid, for everyone to share their circuits.
I am so excited to hear your thoughts! :-)
Hi pals, help me with the level solution. Can't understand why this is wrong; I have used the code in this post: https://www.reddit.com/r/TuringComplete/comments/1uy1pmk/conditional_jumps_level_solution/ It seemed to be right, but the result is the same error as mine: "u read input 57 times, not 6."
imm 0
mov r5,r0
loop:
imm 1
mov r1,r0
mov r2,r5
add
mov r5,r3
imm 37
mov r1,r0
mov r2,in
sub
imm loop
jnz
mov out,r5
I do not understand why this is not working. It fails on the second test shown here. I have seen other solutions for Conditions 10 and they look logically the same as the one I have. I just swapped a or -> not with a nor and two ands into an or with two switches. The other wiring is the same.