Skip to content

Commit 99f263e

Browse files
authored
fix
1 parent c790662 commit 99f263e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lessons/countsort.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ order: "5F"
55
section: "Searching & Sorting"
66
description: "learn Sorting algorithms"
77
---
8-
__________________________________________________________________________________________________________________
98

109
Counting sort is a sorting algorithm that sorts the elements of an array by counting the number of occurrences of each unique element in the array. In Counting sort, we maintain an auxiliary array which drastically increases space requirement for the algorithm implementation.
1110

@@ -160,4 +159,4 @@ The space complexity of Counting Sort is O(max). Larger the range of elements, l
160159

161160
1. Shil and Birthday Present : https://www.hackerearth.com/problem/algorithm/shil-and-birthday-present/
162161
2. Finding Pairs : https://www.hackerearth.com/problem/algorithm/finding-pairs-4/
163-
3. Counting Sort : https://practice.geeksforgeeks.org/problems/counting-sort/1
162+
3. Counting Sort : https://practice.geeksforgeeks.org/problems/counting-sort/1

0 commit comments

Comments
 (0)