摘要: // Forward declaration of guess API. // @param num, your guess // @return -1 if my number is lower, 1 if my number is higher, otherwise return 0 int guess(int num); class Solution { public: i... 阅读全文
posted @ 2019-04-13 23:14 Joel_Wang 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 建立一个哈希表,每次查找,如果对应的列col,行row,小方格box中的数出现第二次,那么数独不合法; 据说还有深度优先搜索的方法,表示没有听懂:) 阅读全文
posted @ 2019-04-13 21:22 Joel_Wang 阅读(197) 评论(0) 推荐(0) 编辑