package
0.0.0-20241125063422-a7e1e0bf04b0
Repository: https://github.com/blueblue0102/leetcode-go.git
Documentation: pkg.go.dev

# README

27. Remove Element

https://leetcode.com/problems/remove-element/

需要同時移除指定的數值,以及將剩餘的值移動到 array 的前面
回傳剩下的值的數量

Takeaway