leetcode26
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode26相关的知识,希望对你有一定的参考价值。
public class Solution { public int RemoveDuplicates(int[] nums) { var len = nums.Length; if (len == 0) { return 0; } else { var pre = nums[0]; var diffindex = 0; for (int i = 1; i < nums.Length; i++) { if (pre != nums[i]) { nums[++diffindex] = nums[i]; pre = nums[i]; } } return diffindex + 1; } } }
以上是关于leetcode26的主要内容,如果未能解决你的问题,请参考以下文章
leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段