This Python script solves the classic Remove Duplicates from Sorted Array problem. The goal is to modify the input array in-place such that each element appears only once, and return the new length.
Given an integer array nums sorted in non-decreasing order, remove some duplicates in-place such that each unique element appears at most twice. The relative order of the elements should be kept the ...