Given a sorted array nums, remove the duplicates in-place such that each element appears only once and returns the new length. Do not allocate extra space for another array, you must do this by modifying the input array with O(1) extra memory. Problem statement taken from: https://leetcode.com/problems/remove-duplicates-from-sorted-array.

3m read timeFrom alkesh26.medium.com
Post cover image
Table of contents
Problem statement

Sort: