LeetCode---Bit Manipulation && Design
摘要:
401. Binary Watch 思路:产生两个list分别代表小时和分钟,然后遍历 public List readBinaryWatch(int num) { List res = new ArrayList(); int[] hour = {8,4,2,1}; int[] minute = 阅读全文
posted @ 2017-01-10 17:16 LeonNew 阅读(150) 评论(0) 推荐(0) 编辑