Given a sorted array nums, remove the duplicates in-place such that each element appear only once and return the new length. code example
Example: remove duplicates from sorted array
def remove_duplicates(nums: [int]) -> int:
cnt = 1
for index in range(len(nums) - 1):
if nums[index] != nums[index + 1]:
nums[cnt] = nums[index + 1]
cnt += 1
print(cnt)