diff --git a/Remove Element.cpp b/Remove Element.cpp new file mode 100644 index 0000000..a516c9f --- /dev/null +++ b/Remove Element.cpp @@ -0,0 +1,13 @@ +class Solution { +public: + int removeElement(vector& nums, int val) { + int j = 0; + for(int i = 0; i