11 2018 档案
leetcode944
摘要:补充一版python3的实现代码: 阅读全文
posted @ 2018-11-25 21:38 Sempron2800+ 阅读(130) 评论(0) 推荐(0)
leetcode942
摘要:public class Solution { public int[] DiStringMatch(string S) { var len = S.Length; var min = 0; var max = len; var list = new List(... 阅读全文
posted @ 2018-11-18 18:49 Sempron2800+ 阅读(158) 评论(0) 推荐(0)
leetcode941
摘要:public class Solution { public bool ValidMountainArray(int[] A) { bool findTop = false; if (A.Length 1) { ... 阅读全文
posted @ 2018-11-18 18:38 Sempron2800+ 阅读(126) 评论(0) 推荐(0)
leetcode937
摘要:补充一份C++的实现: 提交显示错误的问题,我这里没有遇到,截图如下: 阅读全文
posted @ 2018-11-12 15:37 Sempron2800+ 阅读(310) 评论(5) 推荐(0)
leetcode933
摘要:public class RecentCounter { Queue Q; public RecentCounter() { Q = new Queue(); Q.Clear(); } public int Ping(int t) { ... 阅读全文
posted @ 2018-11-04 17:58 Sempron2800+ 阅读(138) 评论(0) 推荐(0)