码迷,mamicode.com
首页 > 其他好文 > 详细

binary-watch

时间:2016-09-21 06:49:12      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

https://leetcode.com/problems/binary-watch/

// 参考 https://discuss.leetcode.com/topic/59374/simple-python-java
// 非常棒的方法

public class Solution {
    public List<String> readBinaryWatch(int num) {
        List<String> lt = new ArrayList<String>();
        for (int m=0; m<12; m++) {
            for (int n=0; n<60; n++) {
                if (Integer.bitCount(m*64+n) == num) {
                    lt.add(String.format("%d:%02d", m, n));
                }
            }
        }
        return lt;
    }
}

 

binary-watch

标签:

原文地址:http://www.cnblogs.com/charlesblc/p/5891226.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!