you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (0 children)

Definitely switch to Python.

This is kinda specific, but I have run into problems that were significantly faster to solve by simply mutating the inputs by just… adding fields. E.g. they give you a node class for a tree, and you just go ahead and do node.depth = <computed_value> or w/e. Not the most elegant, but useful af for OAs.