索引:[LeetCode] Leetcode 题解索引 (C++/Java/Python/Sql)
Github:
https://github.com/illuz/leetcode
题目:https://oj.leetcode.com/problems/remove-duplicates-from-sorted-array/
代码(github):https://github.com/illuz/leetcode
给1个有序数列,删重复的元素。
如果可以开1个数组来存就非常容易。但是这题不让你用过剩的空间。
不过也不难,只要保护1个新的坐标就好了。
用 C++ 的 STL 可以只要1句话:用 unique
实现功能,用 distance
计算大小。
Java 和 Python 的写法都和 C++ 的1样,这里就不写出来了。
C++: (摹拟)
C++: (STL)