Skip to content

Commit 8c50795

Browse files
Merge pull request #2517 from Dhyan-P-Shetty/main
Create: 0402-remove-k-digits.py, Create: 1768-merge-strings-alternately.py
2 parents 914ca1f + c9a443d commit 8c50795

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

python/0402-remove-k-digits.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class Solution:
2+
def removeKdigits(self, num: str, k: int) -> str:
3+
stack = []
4+
for i in num:
5+
while stack and stack[-1] > i and k > 0:
6+
k -= 1
7+
stack.pop()
8+
if stack or i is not "0":
9+
stack.append(i)
10+
if k:
11+
stack = stack[:-k]
12+
return ''.join(stack) or '0'
13+
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class Solution:
2+
def mergeAlternately(self, word1: str, word2: str) -> str:
3+
i = j = 0
4+
res = []
5+
6+
while i < len(word1) and j < len(word2):
7+
res.append(word1[i])
8+
res.append(word2[j])
9+
i += 1
10+
j += 1
11+
res.append(word1[i:])
12+
res.append(word2[j:])
13+
return ''.join(res)
14+

0 commit comments

Comments
 (0)