2

When you come up with a solution to a programmer game that is shorter than the game devs had imagined (game is called Human Resource Engine)

Comments
  • 0
    ... and for those who wonder: I saved a copy operation by undoing a sub with an add
  • 0
    Just like swapping vars:

    Instead of: c=a, a=b, b=c
    You do: a=a+b, b=a-b
  • 0
    Love this game. Made the size optimization today on Three Sort. Still working on the time optimization. Best attempt is still 100 cycles, need 78 or less.
  • 1
    Also check put TIS 100. The game features an emulated fictional machine with its own simple ASM language and multiple processors.
  • 0
    Right now, I am stuck on Countdown with the speed challenge with 107 steps on avg but I need to get down to 82!

    Don't see that happening bc I already do the lowest possible thing I can imagine :-(
  • 0
    @Theo20185 the iPad version has no reviews - excellent! 😎
  • 0
    That one is dependent on using as few jumps as possible.
  • 1
    @pardeike I picked it up on Steam. Plenty of solid reviews there :D
  • 0
    @Theo20185 I compared my solution to the 78 I found on steam and I am not sure if mine uses less jumps. Maybe, but the detail is in the averaging algorithm they use
Add Comment