27. Remove Element
Problem
Given nums = [3,2,2,3], val = 3,
Your function should return length = 2, with the first two elements of nums being 2.Analysis
Code
Last updated
Given nums = [3,2,2,3], val = 3,
Your function should return length = 2, with the first two elements of nums being 2.Last updated