Leetcode — 顶级面试150 — 移除元素
原文英文,约600词,阅读约需2分钟。发表于: 。It’s an easy problem that consists in: 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...
给定一个整数数组nums和一个整数val,要求原地移除nums中所有val的出现,返回不等于val的元素数量k,并修改nums使前k个元素为不等于val的元素。示例:输入[3,2,2,3]和val=3,输出k=2,数组变为[2,2]。