1 Star 0 Fork 0

jimgo/Three Plus One Game

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ternary.js 349 Bytes
一键复制 编辑 原始数据 按行查看 历史
jimgo 提交于 2021-05-27 23:54 . these are temp files.
// get the next number
function step(num) {
if (num === 1) return 1;
return num & 1 ? (num * 3 + 1) >> 1 : num >> 1
}
// Show Step in Console Only
function checkSteps(num) {
let cnt = 0;
while (num >= 2) {
console.log(num, num.toString(3));
num = num & 1 ? (num * 3 + 1) >> 1 : num >> 1;
cnt++;
}
console.log('cnt:', cnt);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/jimgo/ThreePlusOneGame.git
git@gitee.com:jimgo/ThreePlusOneGame.git
jimgo
ThreePlusOneGame
Three Plus One Game
master

搜索帮助