Skip to content
This repository was archived by the owner on Dec 12, 2023. It is now read-only.

Commit 47f0e7a

Browse files
committed
Start adding an overview for #34
1 parent 4a818c6 commit 47f0e7a

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

Readme.md

+23-1
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,33 @@
22

33
This is my repo full of code problems that I have completed prior to or during an interview. I hope that all these problems (and solutions) are useful to practice against and review. Feel free to contribute any solutions and optimisations, given they are algorithmic optimisations. Please add your own problems that you find as well, as I would love to see them.
44

5+
## Problems
6+
7+
### Sorting Algorithms
8+
9+
* [Quick Sort](https://github.com/blakeembrey/code-problems/tree/master/quick-sort)
10+
* [Bubble Sort](https://github.com/blakeembrey/code-problems/tree/master/bubble-sort)
11+
* [Merge Sort](https://github.com/blakeembrey/code-problems/tree/master/merge-sort)
12+
* [Selection Sort](https://github.com/blakeembrey/code-problems/tree/master/selection-sort)
13+
14+
### Data Structures
15+
16+
* [Stack](https://github.com/blakeembrey/code-problems/tree/master/stack)
17+
* [Queue](https://github.com/blakeembrey/code-problems/tree/master/queue)
18+
* [Linked List](https://github.com/blakeembrey/code-problems/tree/master/linked-list)
19+
* [Binary Search Tree Check](https://github.com/blakeembrey/code-problems/tree/master/binary-search-tree-check) *Not an implementation, but checks whether an object conforms to an implementation*
20+
21+
### Shortest Code Solutions
22+
23+
* [Shortest Fizz Buzz](https://github.com/blakeembrey/code-problems/tree/master/shortest-fizz-buzz)
24+
525
## Contributing
626

727
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality.
828

9-
Indentation should be set to two spaces. Please lint and test your code with any means available - currently only JavaScript has tests and linting via Mocha and JSHint.
29+
Indentation should be set to two spaces. Consider adding an entry on the problems list above where applicable.
30+
31+
Please lint and test your code with any means available - currently only JavaScript has tests and linting via Mocha and JSHint.
1032

1133
## Testing
1234

0 commit comments

Comments
 (0)