java

https://leetcode.com/problems/remove-element/ LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com Algorithm Input: nums = [3,2,2,3], val = 3 Output: 2, nums = [2,2,_,_] 위와 같이 val을 제거한 배열을 리턴해야한다.각 원소를 순회하면서,원소가 val과 값이 다르다면 l p..
고쩡이
'java' 태그의 글 목록