 There are exactly fourteen triangles containing a right angle that can be formed when each co-ordinate lies between 0 and 2 inclusive; that is, 0 ≤ x1, y1, x2, y2 ≤ 2.
There are exactly fourteen triangles containing a right angle that can be formed when each co-ordinate lies between 0 and 2 inclusive; that is, 0 ≤ x1, y1, x2, y2 ≤ 2.
 Given that 0 ≤ x1, y1, x2, y2 ≤ 50, how many right triangles can be formed?
Given that 0 ≤ x1, y1, x2, y2 ≤ 50, how many right triangles can be formed?
rightTrianglesIntCoords() should return a number.
    testString: assert(typeof rightTrianglesIntCoords() === 'number');
  - text: rightTrianglesIntCoords() should return 14234.
    testString: assert.strictEqual(rightTrianglesIntCoords(), 14234);
```