diff --git a/stack/Leetcode 402. Remove K Digits.cpp b/stack/Leetcode 402. Remove K Digits.cpp new file mode 100644 index 0000000..fef7c5d --- /dev/null +++ b/stack/Leetcode 402. Remove K Digits.cpp @@ -0,0 +1,21 @@ +// Problem Link : https://leetcode.com/problems/remove-k-digits/ + + +class Solution { +public: + string removeKdigits(string num, int k) { + int i=0; + string s; + while(i