#java: return true if the integer is the concatenation of two square numbers.
6 messages · Page 1 of 1 (latest)
Main thing I can think of is splitting on every possible position and checking if the values are both squares
I would also use a pregenerated list of numbers to check against to improve computation speeds
2500 would be 25 and 0, wouldn't it?