当前位置:网站首页>Calculate the distance between two points
Calculate the distance between two points
2022-08-01 23:07:00 【Ziwei front end】
JavaScript version
const distance = (p1, p2) => Math.sqrt(Math.pow(p2.x - p1.x, 2) + Math.pow(p2.y - p1.y, 2));
TypeScript version
interface Point {
x: number;
y: number;
}
const distance = (p1: Point, p2: Point): number => Math.sqrt(Math.pow(p2.x - p1.x, 2) + Math.pow(p2.y - p1.y, 2));
边栏推荐
- excel cell contian two words, seperated by a slash
- Create virtual environments with virtualenv and Virtualenvwrapper virtual environment management tools
- xctf攻防世界 Web高手进阶区 webshell
- B. Difference Array--Codeforces Round #808 (Div. 1)
- Deep learning Course2 first week Practical aspects of Deep Learning exercises
- 得物客服热线的演进之路
- 复现gallerycms字符长度限制短域名绕过
- Jmeter是什么
- 03、GO语言变量定义、函数
- 小程序毕设作品之微信美食菜谱小程序毕业设计成品(5)任务书
猜你喜欢
Prufer序列
Deep Learning Course2 Week 2 Optimization Algorithms Exercises
深度学习Course2第二周Optimization Algorithms习题整理
JS prototype hasOwnProperty in 加方法 原型终点 继承 重写父类方法
牛客多校4 A.Task Computing 思维
【Verilog刷题篇】硬件工程师从0到入门1|基础语法入门
域名重定向工具 —— SwitchHosts 实用教程
[深入研究4G/5G/6G专题-48]: 5G Link Adaption链路自适应-4-下行链路自适应DLLA-PDCCH信道
联邦学习在金融领域的发展和应用
10年稳定性保障经验总结,故障复盘要回答哪三大关键问题?|TakinTalks大咖分享
随机推荐
解决yolov5训练时出现:“AssertionError: train: No labels in VOCData/dataSet_path/train.cache. Can not train ”
excel change cell size
How to add a game character to a UE4 scene
xctf attack and defense world web master advanced area webshell
excel split text into different rows
还在纠结报表工具的选型么?来看看这个
excel clear format
从0到100:招生报名小程序开发笔记
小程序毕设作品之微信美食菜谱小程序毕业设计成品(7)中期检查报告
JS prototype hasOwnProperty in 加方法 原型终点 继承 重写父类方法
y84.第四章 Prometheus大厂监控体系及实战 -- prometheus告警机制进阶(十五)
如何使用pywinauto和pyautogui将动漫小姐姐链接请回家
Codeforces CodeTON Round 2 (Div. 1 + Div. 2, Rated, Prizes!) A-D 题解
03. GO language variable definition, function
prim生成树
论文解读(GSAT)《Interpretable and Generalizable Graph Learning via Stochastic Attention Mechanism》
数据库表设计规则
xss相关知识点以及从 XSS Payload 学习浏览器解码
Graph Theory - Strongly Connected Component Condensation + Topological Sort
RxJs SwitchMapTo 操作符之移花接木