GooseterV / Project-Euler

Found constant expressions in conditions JS-0003
Bug risk
Major
a year agoa year old
Unexpected constant condition
 9
10function main() {
11	x = 600851475143;
12	while (true) {13		y = smallestFactor(x);
14		if (y < x) {
15			x /= y;