배열
두 개의 포인터
Array
Two Pointers
Description:
Given an array and a value, remove all instances of that value in place and return the new length.
Do not allocate extra space for another array, you must do this in place with constant memory.
The order of elements can be changed. It doesn't matter what you leave beyond the new length.
Example:
Given input array nums =
설명:[3,2,2,3]
, val =3
배열과 값이 주어지면 해당 값의 모든 인스턴스를 제거하고 새 길이를 반환합니다.
다른 배열에 추가 공간을 할당하지 마십시오. 일정한 메모리를 사용하여 해당 위치에서 이 작업을 수행해야 합니다.
[3,2,2,3]
, val = 3
🎜
🎜함수는 길이 = 2를 반환해야 하며, nums의 처음 두 요소는 2입니다.🎜
🎜
🎜내 솔루션:🎜
🎜rreee🎜위 내용은 LeetCode & Q27-요소 제거-쉬움의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!