unary vs binary | is n++ faster than n = n + 1
As a programmer you’ve certainly touched on the topic of unary and binary operations (except if you’re coding in python). But which one is faster? Let’s take a look. Typing Speed This section might not be important for performance, but for speed of coding. Typing n++ is a little faster than typing n = n … Read more