Skip to content

Commit

Permalink
Add day37
Browse files Browse the repository at this point in the history
  • Loading branch information
MadhavBahl committed Feb 8, 2019
1 parent e9d428c commit 29af59b
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ Motivate yourself to code daily till 60 days, and see the magic! Coding will bec
| [Day 33](./day32) | [Insertion Sort](./day33) | [http://codetoexpress.tech/dc/day33/](http://codetoexpress.tech/dc/day33/) | **Beginner** |
| [Day 34](./day34) | [Merge Sort](./day34) | [http://codetoexpress.tech/dc/day34/](http://codetoexpress.tech/dc/day34/) | **Intermediate** |
| [Day 35](./day35) | [Quick Sort](./day35) | [http://codetoexpress.tech/dc/day35/](http://codetoexpress.tech/dc/day35/) | **Intermediate** |
| [Day 36](./day35) | [Radix Sort](./day36) | [http://codetoexpress.tech/dc/day36/](http://codetoexpress.tech/dc/day36/) | **Intermediate** |
| [Day 36](./day36) | [Radix Sort](./day36) | [http://codetoexpress.tech/dc/day36/](http://codetoexpress.tech/dc/day36/) | **Intermediate** |
| [Day 37](./day37) | [Radix Sort](./day37) | [http://codetoexpress.tech/dc/day37/](http://codetoexpress.tech/dc/day37/) | **Misc** |

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

Expand Down
Binary file modified day36/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions day37/JavaScript/sol1.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// To be added
42 changes: 42 additions & 0 deletions day37/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
![cover](./cover.png)

# Day 37 - Search and Sort Algorithms Part J: Applications

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.

A huge shoutout to Hackerearth and Geeks4Geeks for having such great collecton of problems.

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)

### Hackerearth Problems

1. [Linear Search](https://www.hackerearth.com/practice/algorithms/searching/linear-search/practice-problems/)
2. [Binary Search](https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/)
3. [Ternary Search](https://www.hackerearth.com/practice/algorithms/searching/ternary-search/practice-problems/)
4. [Bubble Sort](https://www.hackerearth.com/practice/algorithms/sorting/bubble-sort/practice-problems/)
5. [Selection Sort](https://www.hackerearth.com/practice/algorithms/sorting/selection-sort/practice-problems/)
6. [Insertion Sort](https://www.hackerearth.com/practice/algorithms/sorting/insertion-sort/practice-problems/)
7. [Merge Sort](https://www.hackerearth.com/practice/algorithms/sorting/merge-sort/practice-problems/)
8. [Quick Sort](https://www.hackerearth.com/practice/algorithms/sorting/quick-sort/practice-problems/)
9. [Radix Sort](https://www.hackerearth.com/practice/algorithms/sorting/radix-sort/practice-problems/)
10. [Heap Sort](https://www.hackerearth.com/practice/algorithms/sorting/heap-sort/practice-problems/)

### GeeksForGeeks Problems

1. [Searching Algorithms - G4G](https://www.geeksforgeeks.org/searching-algorithms/)
2. [Sorting Algorithms - G4G](https://www.geeksforgeeks.org/sorting-algorithms/)

## Contribution Guidelines

1. Make a folder in this directory (day37), and the name of the folder should be the name of the problem (Example: ```divide apples```).
2. In the folder add the README.md
3. Copy paste the question and sample input output in the README.md
4. Add credits at the start like this

```
Question Source: HackerEarth
Question Link: https://www.hackerearth.com/practice/algorithms/sorting/heap-sort/practice-problems/algorithm/divide-apples/
```

5. Add your code to README
6. Add the file containing the code in the same directory.
Binary file added day37/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 29af59b

Please sign in to comment.