摘要: "题目" 这也是一道hard难度的题目吗? 很简单,维护一个数组就好了 class Solution { public: int firstMissingPositive(vector& nums) { int len = nums.size()+1; int a[len]; memset(a,0, 阅读全文
posted @ 2019-08-07 14:10 Shendu.CC 阅读(103) 评论(0) 推荐(0)
摘要: "题目" 阅读全文
posted @ 2019-08-07 13:39 Shendu.CC 阅读(106) 评论(0) 推荐(0)