@ -121,7 +121,7 @@ var difference = (arr, values) =>
Use `Math.pow()` and `Math.sqrt()` to calculate the Euclidean distance between two points.
```js
vardistance=x0,y0,x1,y1=>
vardistance=(x0,y0,x1,y1)=>
Math.sqrt(Math.pow(x1-x0,2)+Math.pow(y1-y0,2))
```
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.