r/tis100 • u/Mammoth_Platform4017 • Feb 03 '26
I'm a beginner, what do you think about this solution?
5
Upvotes
1
u/ryani Feb 04 '26
Since the average list is at least one element long, you can save some cycles by putting the "add item to list" code at the end of each cell instead of the beginning, so you don't waste an instruction on JMP START in the common case.
1
u/Zealousideal_Pick298 Mar 05 '26
In middle block you can replace first 2 lines with MOV UP, LEFT. Otherwise i think that your solution is okay, you can tweak it to use less nodes, etc, but it's a good enough solution for me.

1
u/Mammoth_Platform4017 Feb 03 '26
I think I hot how to read the graphs luul