Advertisement
nikolayneykov

Untitled

Apr 30th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function solve ([x1, y1, x2, y2]) {
  2.   console.log(`{${x1}, ${y1}} to {0, 0} is ${Number.isInteger(Math.hypot(x1 - 0, y1 - 0)) ? 'valid' : 'invalid'}`)
  3.   console.log(`{${x2}, ${y2}} to {0, 0} is ${Number.isInteger(Math.hypot(x2 - 0, y2 - 0)) ? 'valid' : 'invalid'}`)
  4.   console.log(`{${x1}, ${y1}} to {${x2}, ${y2}} is ${Number.isInteger(Math.hypot(x1 - x2, y1 - y2)) ? 'valid' : 'invalid'}`)
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement