Day002 - 27. Remove Element
업데이트:
27. Remove Element
Given an integer array nums
and an integer val
, remove all occurrences of val
in nums
in-place. The order of the elements may be changed. Then return the number of elements in nums
which are not equal to val
.
Consider the number of elements in nums
which are not equal to val
be k
, to get accepted, you need to do the following things:
- Change the array
nums
such that the firstk
elements ofnums
contain the elements which are not equal toval
. The remaining elements ofnums
are not important as well as the size ofnums
. - Return
k
.
Custom Judge:
The judge will test your solution with the following code:
int[] nums = [...]; // Input array
int val = ...; // Value to remove
int[] expectedNums = [...]; // The expected answer with correct length.
// It is sorted with no values equaling val.
int k = removeElement(nums, val); // Calls your implementation
assert k == expectedNums.length;
sort(nums, 0, k); // Sort the first k elements of nums
for (int i = 0; i < actualLength; i++) {
assert nums[i] == expectedNums[i];
}
If all assertions pass, then your solution will be accepted.
Example 1:
Input: nums = [3,2,2,3], val = 3
Output: 2, nums = [2,2,_,_]
Explanation: Your function should return k = 2, with the first two elements of nums being 2.
It does not matter what you leave beyond the returned k (hence they are underscores).
Example 2:
Input: nums = [0,1,2,2,3,0,4,2], val = 2
Output: 5, nums = [0,1,4,0,3,_,_,_]
Explanation: Your function should return k = 5, with the first five elements of nums containing 0, 0, 1, 3, and 4.
Note that the five elements can be returned in any order.
It does not matter what you leave beyond the returned k (hence they are underscores).
Constraints:
0 <= nums.length <= 100
0 <= nums[i] <= 50
0 <= val <= 100
내 풀이
class Solution:
def removeElement(self, nums: List[int], val: int) -> int:
while val in nums:
nums.remove(val)
answer = len(nums)
return answer
이번 문제도 어제 푼 문제와 마찬가지로 nums list 자체를 수정하여 해당 list안에 val과 같은 요소를 모두 제거해야 하는 문제이다. 이번 문제도 easy인 만큼 바로 생각나는대로 코드를 작성하였다.
while loop을 돌며 nums list 안에 val이 하나도 없을 때 까지 반복하여 list.remove()를 통해 제거한 후 val과 같은 모든 요소가 사라진 list의 len을 return하는 방식으로 간단하게 해결하였다.
하지만 제출 후 GPT에게 내 코드의 평가를 부탁하였는데, while loop을 돌며 nums.remove()를 할 때마다 val이 제거된 새로운 list를 반복적으로 만들어야 해서 비효율적인 코드라는 평가를 받았다.
- 다른 풀이
class Solution:
def removeElement(self, nums: List[int], val: int) -> int:
k = 0
for i in range(len(nums)):
if nums[i] != val:
nums[k] = nums[i]
k += 1
return k
따라서 list.remove() method를 사용하지 않고 nums list의 요소를 for loop을 통해 하나씩 순회하며 val과 같지 않은 요소들을 앞으로 한 칸씩 몰아주는 동시에 몇 개의 요소가 val과 같지 않은지를 k를 통해 카운트 하였다.
댓글남기기