【LeetCode】 26. 删除有序数组中的重复项 | 80. 删除有序数组中的重复项 II | 双指针

双指针

  • 26. 删除有序数组中的重复项
  • 80. 删除有序数组中的重复项 II

26. 删除有序数组中的重复项

https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array/
【LeetCode】 26. 删除有序数组中的重复项 | 80. 删除有序数组中的重复项 II | 双指针_第1张图片
思路:本题可以使用unqiue + erase, 但是目的在于练习双指针。

class Solution {
   
public:
    int removeDuplicates(vector<int>& nums) {
   
    	// <= 1的直接返回size就可以了
        int size = nums.size();
        if (size <= 

你可能感兴趣的:(Leetcode,指针,c++)