leetcode 869. Reordered Power of 2
摘要:
```javascript function reorderedPowerOf2(N) { var a1 = N.toString().split('') a1.sort((a, b) => a.localeCompare(b) ) var s1 = a1.join('... 阅读全文
posted @ 2020-01-10 12:14 司徒正美 阅读(633) 评论(1) 推荐(0) 编辑