Hi dev...share your observations?
x = x^y;
y = x^y;
x = x^y;
Or
temp = x;
x = y;
y = temp;
Which one is better?
Hi dev...share your observations?
x = x^y;
y = x^y;
x = x^y;
Or
temp = x;
x = y;
y = temp;
Which one is better?
For further actions, you may consider blocking this person and/or reporting abuse
Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.
Mike Young -
Mike Young -
Mike Young -
Mike Young -
Top comments (1)
The second is computationally faster, and it is clearer to read, clearly showing developer intent. It also works on non-integer data types, too.
More details: dev.to/comments/684523