'''
Author: 365JHWZGo
Description: 27. 移除元素
Date: 2021-09-30 11:09:00
FilePath: Pythontestdemo2.py
LastEditTime: 2021-09-30 11:24:15
LastEditors: 365JHWZGo
'''
class Solution(object):
def removeElement(self, nums, val):
"""
:type nums: List[int]
:type val: int
:rtype: int
"""
while True:
if val in nums:
nums.remove(val)
else:
break
return len(nums)



