IT博客汇
首页
精华
技术
设计
资讯
扯淡
权利声明
登录
注册
leetcode 869. Reordered Power of 2 - 司徒正美
司徒正美
发表于
2020-01-10 04:14:00
love
0
【摘要】```javascript function reorderedPowerOf2(N) { var a1 = N.toString().split('') a1.sort((a, b) => a.localeCompare(b) ) var s1 = a1.join('...
阅读全文