摘要: public class Solution { public bool IsUgly(int num) { if(num <=0) return false; if(num==1) return true; while(num/2*2==num){ ... 阅读全文
posted @ 2016-01-19 11:51 *桔子* 阅读(200) 评论(0) 推荐(0)
摘要: public class Solution { public int MaxProduct(string[] words) { bool flag; int pro = 0; int N = words.Length; int[]... 阅读全文
posted @ 2016-01-19 10:39 *桔子* 阅读(135) 评论(0) 推荐(0)