From a6a38a28eb1337fb3771e4d5a8d8e6b4535583e9 Mon Sep 17 00:00:00 2001 From: Sankalp Sharma Date: Mon, 17 May 2021 11:46:39 +0530 Subject: [PATCH] updated readme --- algorithms/Python/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/algorithms/Python/README.md b/algorithms/Python/README.md index 49dc6d79..f43cc1f8 100644 --- a/algorithms/Python/README.md +++ b/algorithms/Python/README.md @@ -2,6 +2,9 @@ ## Arrays 1. [Count Inversions](arrays/counting_inversions.py) +2. [Majority Element](arrays/majority_element.py) +3. [Rotate Array](arrays/rotate_array.py) +4. [Missing Number](arrays/missing_number.py) ## Linked Lists 1. [Doubly](linked_lists/doubly.py)