|
3 | 3 | [](https://travis-ci.org/knaxus/problem-solving-javascript)
|
4 | 4 | [](https://coveralls.io/github/knaxus/problem-solving-javascript?branch=master)
|
5 | 5 |
|
6 |
| -Collection of interview questions with Unit Tests |
| 6 | +Collection of interview questions with Unit Tests. Problems includes Data Structures, Logical and few Classical problems. |
| 7 | + |
| 8 | +## Table of Contents |
| 9 | + |
| 10 | +### Classics |
| 11 | + |
| 12 | +- [Caeser Cipher](src/_Classics_/caeser_cipher) |
| 13 | +- [Fibonacci](src/_Classics_/fibonacci) |
| 14 | + |
| 15 | +### Data Structures |
| 16 | + |
| 17 | +- [Singly Linked List](src/_DataStructures_/LinkedList) |
| 18 | + - [N Element From Last](src/_DataStructures_/LinkedList/element-from-last) |
| 19 | + - [Middle Node](src/_DataStructures_/LinkedList/middle-node) |
| 20 | +- [Stack](src/_DataStructures_/Stack) |
| 21 | + - [Implement Queue Using Stack](src/_DataStructures_/Stack/immitate-queue-using-stack) |
| 22 | +- [Queue](src/_DataStructures_/Queue) |
| 23 | + - [Weave](src/_DataStructures_/Queue/weave) |
| 24 | + |
| 25 | +### Logical Problems |
| 26 | + |
| 27 | +- [Anagrams](src/_Problems_/anagrams) |
| 28 | +- [Array Chunk](src/_Problems_/array-chunk) |
| 29 | +- [Count Vowels](src/_Problems_/count-vowels) |
| 30 | +- [Find 2 numbers that add upto N](src/_Problems_/find-2-nums-adding-to-n) |
| 31 | +- [Find 2nd Maxinum from an Array](src/_Problems_/find-2nd-max) |
| 32 | +- [FizzBuzz](src/_Problems_/fizzbuzz) |
| 33 | +- [String Permutaions](src/_Problems_/get_string_permutations) |
| 34 | +- [Get Subsequence](src/_Problems_/get_subsequence) |
| 35 | +- [Get Maze Path](src/_Problems_/get_subsequence) |
| 36 | +- [Get longest consecutive 1s](src/_Problems_/max-consecutive-1s) |
| 37 | +- [Get Max Char](src/_Problems_/maxchar) |
| 38 | +- [Merge 2 Sorted Arrays](src/_Problems_/merge-two-sorted-arrays) |
| 39 | +- [Palindrome](src/_Problems_/palindrome) |
| 40 | +- [Product of Elements](src/_Problems_/product-of-elements) |
| 41 | +- [Remove Duplicates](src/_Problems_/remove-duplicates) |
| 42 | +- [Reverse String](src/_Problems_/reverse_string) |
| 43 | + |
| 44 | +### Searching |
| 45 | + |
| 46 | +- [Binary Search](src/_Searching_/BinarySearch) |
0 commit comments