Skip to content

Commit 174f902

Browse files
authored
Update README.md
1 parent e0aa764 commit 174f902

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,27 @@ The LCA of n1 and n2 in T is the shared ancestor of n1 and n2 that is located fa
7575
| Implementation of a Queue Data Structure | [queue_data_structure.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/queue_data_structure.py) |
7676
| Implementation of Quick Sort | [quick_sort.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/quick_sort.py) |
7777
| Write an efficient function that deletes characters from an ASCII string where any character existing in remove must be deleted from str. For example, given a str of "Battle of the Vowels: Hawaii vs. Grozny" and a remove of "aeiou", the function should transform str to “Bttl f th Vwls: Hw vs. Grzny”. | [remove_chars.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/remove_chars.py) |
78+
| Remove duplicate characters from string | [remove_dup_chars.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/remove_dup_chars.py) |
79+
| Remove duplicates using a dictionary | [remove_duplicates.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/remove_duplicates.py) |
80+
| Remove duplicates using extra space | [remove_duplicates_v2.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/remove_duplicates_v2.py) |
81+
| Reverse the string in place | [reverse_in_place.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/reverse_in_place.py) |
82+
| Reverse the string using recursion | [reverse_str_recursive.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/reverse_str_recursive.py) |
83+
| Given a sentence, reverse each word but don't reverse the sentence | [reverse_words.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/reverse_words.py) |
84+
| | []() |
85+
| | []() |
86+
| | []() |
87+
| | []() |
88+
| | []() |
89+
| | []() |
90+
| | []() |
91+
| | []() |
92+
| | []() |
93+
| | []() |
94+
| | []() |
95+
| | []() |
96+
| | []() |
97+
| | []() |
98+
| | []() |
7899
| | []() |
79100
| | []() |
80101
| | []() |

0 commit comments

Comments
 (0)