惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

AI
AI
TaoSecurity Blog
TaoSecurity Blog
H
Heimdal Security Blog
Help Net Security
Help Net Security
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Microsoft Azure Blog
Microsoft Azure Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Google DeepMind News
Google DeepMind News
爱范儿
爱范儿
The Cloudflare Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
人人都是产品经理
人人都是产品经理
大猫的无限游戏
大猫的无限游戏
N
News | PayPal Newsroom
V2EX - 技术
V2EX - 技术
博客园 - 【当耐特】
D
Darknet – Hacking Tools, Hacker News & Cyber Security
S
Secure Thoughts
C
CERT Recently Published Vulnerability Notes
罗磊的独立博客
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Privacy & Cybersecurity Law Blog
有赞技术团队
有赞技术团队
S
Schneier on Security
S
SegmentFault 最新的问题
Google Online Security Blog
Google Online Security Blog
H
Hacker News: Front Page
The Last Watchdog
The Last Watchdog
Schneier on Security
Schneier on Security
PCI Perspectives
PCI Perspectives
IT之家
IT之家
Project Zero
Project Zero
博客园 - 司徒正美
P
Privacy International News Feed
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Jina AI
Jina AI
Security Latest
Security Latest
Hacker News - Newest:
Hacker News - Newest: "LLM"
腾讯CDC
C
CXSECURITY Database RSS Feed - CXSecurity.com
阮一峰的网络日志
阮一峰的网络日志
C
Check Point Blog
aimingoo的专栏
aimingoo的专栏
V
Vulnerabilities – Threatpost
W
WeLiveSecurity
NISL@THU
NISL@THU
Webroot Blog
Webroot Blog
N
Netflix TechBlog - Medium
L
Lohrmann on Cybersecurity

博客园 - 君临天下之徐少

nvm安装 Homebrew 安装 Less的优点 什么是nrm React函数式组件值之useRef()和useImperativeHandle() 谷歌刷题插件安装 SSL certificate problem: unable to get local issuer certificate 错误解决 常用命令 Mac安装Nvm Node开发环境 解决Mac安装Homebrew失败 Canvas学习:globalCompositeOperation详解 React.CreateContext html让容器居中,css让容器水平垂直居中的7种方式 js下载文件防止白屏 GitHub上README.md编写教程(基本语法) 微信字体大小调整导致的H5页面错乱问题处理 G6-Editor 编辑器入门使用教程 git reset 加不加 --hard的区别 taro, h5拨打电话和发送短信
js 处理大数相减
君临天下之徐少 · 2023-01-13 · via 博客园 - 君临天下之徐少
        function sub(num1, num2) {
            if(num1 === num2) return '0'
            function lt(num1, num2) {
                if (num1.length < num2.length) {
                    return true
                } else if (num1.length === num2.length) {
                    return num1 < num2
                } else {
                    return false
                }
            }
            let isMinus = false
            if (lt(num1, num2)) {
                [num1, num2] = [num2, num1]
                isMinus = true
            }

            let len = Math.max(num1.length, num2.length)
            num1 = num1.padStart(len, 0)
            num2 = num2.padStart(len, 0)

            let flag = 0,
                result = '',
                temp
            for (let i = len - 1; i >= 0; i--) {
                temp = parseInt(num1[i]) - flag - parseInt(num2[i])
                if (temp < 0) {
                    result = (10 + temp) + result
                    flag = 1
                } else {
                    result = temp + result
                    flag = 0
                }
            }
            result = (isMinus ? '-' : '') + result.replace(/^0+/, '')
            return result
        }
        // 传入字符串格式
        console.log(sub('9999999999011112','9999999999011111'
)) // 1
    console.log(sub('9999999999011112','9999999999011113'
)) // -1