Skip to content

Commit 29af59b

Browse files
committed
Add day37
1 parent e9d428c commit 29af59b

File tree

5 files changed

+45
-1
lines changed

5 files changed

+45
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ Motivate yourself to code daily till 60 days, and see the magic! Coding will bec
6363
| [Day 33](./day32) | [Insertion Sort](./day33) | [http://codetoexpress.tech/dc/day33/](http://codetoexpress.tech/dc/day33/) | **Beginner** |
6464
| [Day 34](./day34) | [Merge Sort](./day34) | [http://codetoexpress.tech/dc/day34/](http://codetoexpress.tech/dc/day34/) | **Intermediate** |
6565
| [Day 35](./day35) | [Quick Sort](./day35) | [http://codetoexpress.tech/dc/day35/](http://codetoexpress.tech/dc/day35/) | **Intermediate** |
66-
| [Day 36](./day35) | [Radix Sort](./day36) | [http://codetoexpress.tech/dc/day36/](http://codetoexpress.tech/dc/day36/) | **Intermediate** |
66+
| [Day 36](./day36) | [Radix Sort](./day36) | [http://codetoexpress.tech/dc/day36/](http://codetoexpress.tech/dc/day36/) | **Intermediate** |
67+
| [Day 37](./day37) | [Radix Sort](./day37) | [http://codetoexpress.tech/dc/day37/](http://codetoexpress.tech/dc/day37/) | **Misc** |
6768

6869
## [More Problems](./BONUS/README.md)
6970

day36/cover.png

1.16 KB
Loading

day37/JavaScript/sol1.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// To be added

day37/README.md

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
![cover](./cover.png)
2+
3+
# Day 37 - Search and Sort Algorithms Part J: Applications
4+
5+
Now that we are practising searching and sorting algorithms since past 2 weeks, it's the time to do some questions that involves their usage. Since the weeekend is here, try out these problems.
6+
7+
A huge shoutout to Hackerearth and Geeks4Geeks for having such great collecton of problems.
8+
9+
Try out as many problems as you can, the contribution guidelines for today would be a little different (I've mentioned them after this list of links)
10+
11+
### Hackerearth Problems
12+
13+
1. [Linear Search](https://www.hackerearth.com/practice/algorithms/searching/linear-search/practice-problems/)
14+
2. [Binary Search](https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/)
15+
3. [Ternary Search](https://www.hackerearth.com/practice/algorithms/searching/ternary-search/practice-problems/)
16+
4. [Bubble Sort](https://www.hackerearth.com/practice/algorithms/sorting/bubble-sort/practice-problems/)
17+
5. [Selection Sort](https://www.hackerearth.com/practice/algorithms/sorting/selection-sort/practice-problems/)
18+
6. [Insertion Sort](https://www.hackerearth.com/practice/algorithms/sorting/insertion-sort/practice-problems/)
19+
7. [Merge Sort](https://www.hackerearth.com/practice/algorithms/sorting/merge-sort/practice-problems/)
20+
8. [Quick Sort](https://www.hackerearth.com/practice/algorithms/sorting/quick-sort/practice-problems/)
21+
9. [Radix Sort](https://www.hackerearth.com/practice/algorithms/sorting/radix-sort/practice-problems/)
22+
10. [Heap Sort](https://www.hackerearth.com/practice/algorithms/sorting/heap-sort/practice-problems/)
23+
24+
### GeeksForGeeks Problems
25+
26+
1. [Searching Algorithms - G4G](https://www.geeksforgeeks.org/searching-algorithms/)
27+
2. [Sorting Algorithms - G4G](https://www.geeksforgeeks.org/sorting-algorithms/)
28+
29+
## Contribution Guidelines
30+
31+
1. Make a folder in this directory (day37), and the name of the folder should be the name of the problem (Example: ```divide apples```).
32+
2. In the folder add the README.md
33+
3. Copy paste the question and sample input output in the README.md
34+
4. Add credits at the start like this
35+
36+
```
37+
Question Source: HackerEarth
38+
Question Link: https://www.hackerearth.com/practice/algorithms/sorting/heap-sort/practice-problems/algorithm/divide-apples/
39+
```
40+
41+
5. Add your code to README
42+
6. Add the file containing the code in the same directory.

day37/cover.png

141 KB
Loading

0 commit comments

Comments
 (0)