GooseterV / Project-Euler

Use underscores to make long numeric literals readable CS-R1076
Anti-pattern
Major
a year agoa year old
Consider adding underscores to this numeric literal
12			return x;  
13		}
14		public long run() {
15			long x = 600851475143;16			while (true) {
17				long y = smallestFactor(x);
18				if (y < x) {