Skip to content

Commit ece15a8

Browse files
authored
Update README.md
1 parent 018d3dc commit ece15a8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ We are given two arrays that represent the arrival and departure times of trains
4343
| Write a program to convert interger to Roman Representation | [interger_to_roman_num.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/interger_to_roman_num.py) |
4444
| Given two sorted array of sizes m and n in which all elements are distinct. Find the common elements between them | [intersection_arrays.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/intersection_arrays.py) |
4545
| Check if a matrix is symmetric or not | [isMatrixSymmetric.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/isMatrixSymmetric.py) |
46-
| | []() |
47-
| | []() |
48-
| | []() |
49-
| | []() |
50-
| | []() |
51-
| | []() |
52-
| | []() |
46+
| Check if two strings are anagrams of each other | [is_anagram.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/is_anagram.py) |
47+
| Check if two strings are anagrams of each other | [is_anagram_using_collections.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/is_anagram_using_collections.py) |
48+
| Write a program to check if a number is a palindrome or not | [is_num_palindrome.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/is_num_palindrome.py) |
49+
| Given a string, return True if it is a numeric data type, False otherwise | [is_numeric.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/is_numeric.py) |
50+
| N soldiers are standing in a circle and first person has sword and he kills the 2nd person and gives the sword to the third person and so on till 99th person kills the 100th person gives the sword back to the first person, this goes on till only one person survives. Print the survivor. | [josephus.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/josephus.py) |
51+
| The effective time complexity of this improved version is O(logN). For the problem statement, refer `josephus.py` | [josephus_improved.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/josephus_improved.py) |
52+
| The effective time complexity of this improved version is O(1). For the problem statement, refer `josephus.py` | [josephus_improved_v3.py](https://github.com/devAmoghS/Python-Interview-Problems-for-Practice/blob/master/josephus_improved_v3.py) |
5353
| | []() |
5454
| | []() |
5555
| | []() |

0 commit comments

Comments
 (0)