Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
Python
19.6K+ articles
Python Programs
3.7K+ articles
Python list-programs
1.7K+ articles
Python dictionary-programs
582+ articles
python-basics
282+ articles
anagram
55+ articles
Python-sort
54+ articles
Python-list-of-lists
25+ articles
Python-Matrix
14+ articles
Python-Sorted
14 posts
Recent Articles
Popular Articles
TreeMap in Python
Last Updated: 23 July 2025
TreeMap is a data structure that stores key-value pairs in a sorted order based on the keys. In Python, there is no direct built-in implementation of a TreeMap, but the so...
read more
Python
python-map
Python-Sorted
Fastest Way to Sort in Python
Last Updated: 23 July 2025
Sorting is a fundamental operation in Python. Whether we are working with numbers, strings or complex data structures knowing how to sort efficiently is key to optimizing ...
read more
Python
Python Programs
python-basics
Python-sort
Python-Sorted
How to Sort a List Alphabetically in Python?
Last Updated: 23 July 2025
Sorting lists alphabetically is a common task in Python, whether we're organizing names, cleaning data or building an interface. Python makes sorting easy with several bui...
read more
Python
Python Programs
python-list
Python list-programs
Python-sort
Python-Sorted
Python - Sorted Nested Keys in Dictionary
Last Updated: 15 May 2023
Sometimes, while working with Python dictionaries, we can have a problem in which we need to extract all the keys of nested dictionaries and render them in sorted order. T...
read more
Python
Python Programs
Python dictionary-programs
Python-Sorted
Python-nested-dictionary
Python - Sorted order Dictionary items pairing
Last Updated: 27 April 2023
Sometimes, while working with Python dictionaries, we can have problem in which we need to perform reordering of dictionary items, to pair key and values in sorted order, ...
read more
Python
Python Programs
Python dictionary-programs
Python-Sorted
Python | Check for Descending Sorted List
Last Updated: 09 April 2023
The sorted operation of list is essential operation in many application. But it takes best of O(nlogn) time complexity, hence one hopes to avoid this. So, to check if this...
read more
Python
Python Programs
Python list-programs
Python-Sorted
Python - Get a sorted list of random integers with unique elements
Last Updated: 17 April 2023
Given lower and upper limits, generate a sorted list of random numbers with unique elements, starting from start to end.Examples:Input: num = 10, start = 100, end = 200Out...
read more
Python
Python list-programs
Python-Sorted
Python - Difference between sorted() and sort()
Last Updated: 12 July 2025
Sorting means rearranging a given sequence of elements according to a comparison operator on the elements. The comparison operator is used to decide the new order of the e...
read more
Python
python-basics
Python-sort
Python-Sorted
Python | Relative sorted order in Matrix
Last Updated: 13 April 2023
Sometimes, while working with Python Matrix, we can have data arranged randomly and we can have a requirement in which we need to get the element position in sorted order ...
read more
Python
Python list-programs
Python-Sorted
Python-Matrix
Python - Returning index of a sorted list
Last Updated: 12 July 2025
We are given a list we need to return the index of a element in a sorted list. For example, we are having a list li = [1, 2, 4, 5, 6] we need to find the index of elemen...
read more
Python
Python list-programs
Python-Sorted
Python sorted containers
Last Updated: 12 July 2025
Sorted Containers is a powerful Python library that provides fast and easy-to-use implementations of SortedList, SortedDict and SortedSet data types. Unlike Python’s built...
read more
Python
Python-Sorted
Python | Indices of sorted list of list elements
Last Updated: 08 April 2023
Sorting is a common construct and there have been many variations of it being discussed. But sometimes, we need to perform the sorting on the list of list and moreover jus...
read more
Python
Python Programs
Python list-programs
Python-Sorted
Python-list-of-lists
Python | Find missing numbers in a sorted list range
Last Updated: 15 May 2024
Given a range of sorted list of integers with some integers missing in between, write a Python program to find all the missing integers.Examples:Input : [1, 2, 4, 6, 7, 9,...
read more
Python
Python Programs
Python list-programs
Python-Sorted
Check if Two Strings are Anagram - Python
Last Updated: 27 November 2025
Given two strings, the task is to check whether they contain the same characters in the same frequency, even if the order is different. This condition is known as being an...
read more
Python
anagram
Python-Sorted