Finding the absolute differences of every possible 2-permutation of these 3 integers and writing out its prime factorisation:
|1457 - 368| = 1089 = 3^2 * 11^2
|368 - 1754| = 1386 = 2 * 3^2 * 7 * 11
|1754 - 1457| = 297 = 3^3 * 11
Finding the G.C.D of these absolute differeces:
GCD(3^2 * 11^2, 2*3^2*7*11, 3^3*11) = 3^2 * 11 = 99
Therefore 99 is the largest positive integer such that 1457, 368, and 1754 leave the same remainder when divided by it.
(Why does this work? The proof is trivial and is left for the reader as an exercise. )