├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── custom.yml │ ├── documentation.yml │ ├── feature.yml │ └── idea.yml ├── PULL_REQUEST_TEMPLATE.md ├── release-drafter.yml └── workflows │ ├── autolabel.yml │ ├── codeql.yml │ ├── dependency-review.yml │ ├── deploy.yml │ ├── issue_close_open.yml │ ├── lighthouse-report.yml │ ├── lighthouserc.json │ ├── pr_merge.yaml │ ├── pr_raise.yml │ ├── pr_validation.yml │ ├── release.yml │ ├── stale.yml │ └── test-deploy.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── admin └── scripts │ ├── formatLighthouseReport.js │ └── package.json ├── babel.config.js ├── blog ├── 20-most-important-coding-pattern.md ├── Common-Recursion-Patterns.md ├── Exploring-Graph-Algorithms.md ├── Getting-started-with-array-data-structure.md ├── Kadanes-algorithm.md ├── Recursion-vs-Iteration.md ├── Understanding-Graph-Representation.md ├── a-very-useful-data-structure-linked-lists.md ├── a-very-useful-data-structure-string.md ├── authors.yml ├── balancing-speed-and-memory-A-Guide-to-Time-and-Space-Complexity.md ├── bloom-filter.md ├── comparing-sortings.md ├── language-matters-your-path-to-dsa-success-starts-here.md ├── mastering-recursion.md ├── omega-notation-the-key-to-understanding-algorithm-efficiency.md ├── optimizing-recursive-functions.md ├── practical-applications-of-recursion.md ├── understanding-big-o-notation.md └── understanding-time-space-complexity.md ├── docs ├── basic-data-structures │ ├── Method Overriding.md │ ├── Operator Overloading.md │ ├── Strings │ │ ├── Advanced-techniques.md │ │ ├── Highest freqyuency letter.md │ │ ├── Isomorphic strings.md │ │ ├── Reversing a string.md │ │ ├── What_is String.md │ │ └── kmp-algo.md │ ├── _category_.json │ ├── array │ │ ├── 2d-arrays.md │ │ ├── Kadane-Algorithm.md │ │ ├── ProudctOfArrayExceptSelf.md │ │ ├── _category_.json │ │ ├── arrays-bubblesort-dsa.md │ │ ├── arrays-dsa.md │ │ ├── arrays-insertionsort.md │ │ ├── arrays-kadanesalgorithm-dsa.md │ │ ├── arrays-selectionsort.md │ │ ├── bucket-sort.md │ │ ├── counting-sort.md │ │ ├── heap-sort.md │ │ ├── quick-sort.md │ │ └── radix-sort.md │ ├── matrix-data-structure.md │ └── pointer.md ├── content.md ├── data-structures │ ├── _category_.json │ ├── imp-of-dsa.md │ ├── roadmap-to-dsa.md │ ├── types-of-dsa.md │ └── what-is-dsa.md ├── extra │ ├── Approximation Algorithm │ │ └── Approximation.md │ ├── Banker's Algorithm │ │ └── Banker.md │ ├── Boyer Moore │ │ └── Boyer-Moore.md │ ├── Circular_array │ │ ├── Application.md │ │ └── Introduction.md │ ├── DSA-Problem-Solution │ │ ├── Add_two_number_as_LL.md │ │ ├── Clone Linked List with Random and Next Pointer.md │ │ ├── Contains_duplicate.md │ │ ├── Convert Date to Binary.md │ │ ├── Cousins in Binary Tree.md │ │ ├── Delete middle node.md │ │ ├── Delete_occurences_of_key.md │ │ ├── Find Indices of stable mountains.md │ │ ├── Loop in linked list.md │ │ ├── Merge Two Sorted Arrays.md │ │ ├── Merge_K_Sorted_Arrays.md │ │ ├── Palindrome-number.md │ │ ├── Plus-one.md │ │ ├── Segregate even and odd nodes in LinkedList.md │ │ ├── Size_of_largest_BST_in_binary_tree.md │ │ ├── Sliding Window Maximum.md │ │ ├── Symmetric Tree.md │ │ ├── flattening-a-linked-list.md │ │ ├── house-robber.md │ │ ├── longest_substring_without_repeated_characters.md │ │ ├── lowest_common_ancestor.md │ │ ├── merge_intervals.md │ │ ├── odd-even-linked-list.md │ │ ├── palindrome_linked_list.md │ │ ├── partition_equal_subset_sum.md │ │ ├── removing-stars-from-string.md │ │ ├── reverse-bits.md │ │ ├── reverse-linked-list.md │ │ ├── rotten-oranges.md │ │ └── two_sum.md │ ├── Divide and Conquer │ │ ├── Maximum-minimum.md │ │ ├── Strassen's-Matrix-Mutiplication.md │ │ └── convex-hull.md │ ├── Fenwick Tree │ │ └── FenwickTree.md │ ├── Hashing │ │ ├── CollisionHandling.md │ │ ├── OperationInsertion.md │ │ ├── OperationSearch.md │ │ ├── OperationUpdate.md │ │ ├── Tigerhashing.md │ │ ├── _category_.json │ │ ├── deletion-in-hash-table.md │ │ ├── hashsets.md │ │ ├── imp-of-hashing.md │ │ └── what-is-hashing.md │ ├── Jump Search │ │ └── Jump Search.md │ ├── KMP searching pattern │ │ ├── _category_.json │ │ └── readme.md │ ├── Number theory │ │ ├── Divisibility and Prime Numbers.md │ │ ├── GCD.md │ │ ├── LCM.md │ │ ├── Modular Arithmetic.md │ │ ├── counting-divisors.md │ │ ├── modular-exponentiation.md │ │ └── sieve-of-eratosthenes.md │ ├── Object Oriented Programming │ │ ├── 4-pillars-of-oops.md │ │ ├── ApplicationofOOPS.md │ │ ├── Polymorphism.md │ │ ├── _category_.json │ │ ├── abstraction.md │ │ ├── car.png │ │ ├── classes-and-objects.md │ │ ├── constructors-destructors.md │ │ ├── interfaces-vs-abstract-classes.md │ │ ├── intro-to-oops.md │ │ ├── intro.png │ │ ├── real-world-examples.md │ │ └── typesOfInheritance.md │ ├── Queue │ │ ├── Blocked-queue.png │ │ ├── Circular-queue.png │ │ ├── Priority-queue.png │ │ ├── Problem-Practice.md │ │ ├── Two-Stack-Queue.md │ │ ├── _category_.json │ │ ├── blocked-queue.md │ │ ├── check-palindrome-using-dequeue.md │ │ ├── circular-queue.md │ │ ├── concurrent-queue.md │ │ ├── design-circular-Dueque.md │ │ ├── design-circular-Queue.md │ │ ├── double-ended-queue.md │ │ ├── doubleendedqueue.png │ │ ├── priority-queue.md │ │ └── priority_queue_questions.md │ ├── Rabin-Karp Algorithm │ │ └── Rabin-Karp.md │ ├── Randomized Algorithm │ │ └── Randomized-Quicksort.md │ ├── Recursion-depths │ │ ├── Recursion.md │ │ ├── advanced-topics.md │ │ ├── basic-concepts.md │ │ ├── handling-depth-errors.md │ │ └── performance-consideration.md │ ├── Recursion │ │ ├── Ackerman.md │ │ ├── Count-all-subsequences-with-sum-K.md │ │ ├── GrayCodeGeneration.md │ │ ├── Josephus-Queries.md │ │ ├── Knight's_Tour_Problem.md │ │ ├── Letter-Combinations-of-a-Phone-number.md │ │ ├── N Queen 2.png │ │ ├── N Qween 1.png │ │ ├── Reversing_String.md │ │ ├── SmawkAlgorithm.md │ │ ├── Sodoko.md │ │ ├── StonePaperScissor.md │ │ ├── TowersOfHanoi.md │ │ ├── Unwinding_in_recursion.md │ │ ├── VoseAlias.md │ │ ├── WaterJug.md │ │ ├── _category_.json │ │ ├── catalannumber.md │ │ ├── fibonacci.md │ │ ├── generate-parantheses.md │ │ ├── josephus.md │ │ ├── look-and-say.md │ │ ├── n-queen.md │ │ ├── recursion.md │ │ └── ulamsequence.md │ ├── Segment-Trees │ │ ├── Dynamic Segment Trees.md │ │ ├── Practice Porblem.md │ │ ├── Segment Trees Introduction.md │ │ └── Segment-Tree-img.png │ ├── Sliding-Window │ │ ├── IntroductionToSlidingWindow.jpg │ │ ├── Problem-Practice.md │ │ ├── _category_.json │ │ ├── character-replacement.md │ │ ├── introduction-to-sliding-window.md │ │ ├── longest-repeating-character-replacement.md │ │ ├── longest-substring-with-K-different-characters.md │ │ ├── maximum-sum-subarray-size-K.md │ │ └── minimize-maximum-of-two-arrays.md │ ├── Stack │ │ ├── Balanced-Parenthesis.md │ │ ├── Balanced-parentheses-checker.md │ │ ├── Conversion.md │ │ ├── Evaluation.md │ │ ├── Introduction_to_Stack.png │ │ ├── Min-Stack.md │ │ ├── MonotonicStack.md │ │ ├── Next Greater Element (NGE).md │ │ ├── Problem-Practice.md │ │ ├── Reverse-Stack.md │ │ ├── Stack-permutation.md │ │ ├── Stock-span.md │ │ ├── String_Reversal.md │ │ ├── Trapping Rain Water Problem.md │ │ ├── _category_.json │ │ ├── introduction-to-stack.md │ │ └── stack.md │ ├── Standard Template Library │ │ ├── STL-algorithms.md │ │ ├── STL-containers.md │ │ ├── STL-iterators.md │ │ └── STL-theory.md │ ├── Strings │ │ ├── Problem-Practice.md │ │ ├── String Basics.md │ │ └── String Operation.md │ ├── Tarjan's Algorithm │ │ ├── Tarjan.md │ │ └── algorithm.png │ ├── Task Scheduling │ │ ├── Task-schedule.md │ │ └── _category_.json │ ├── Trees │ │ ├── AVL Tree.md │ │ ├── B-Trees.md │ │ ├── Expression-tree.md │ │ ├── Heap-tree.md │ │ ├── Practice Problems.md │ │ ├── Sum-tree.md │ │ ├── Trees Practice Problems.md │ │ ├── Types of Trees.md │ │ ├── balanced-tree.md │ │ ├── binary-search-tree.md │ │ ├── binary-tree.md │ │ ├── k-d tree algorithm.md │ │ └── tree-data-structure.md │ ├── Tries │ │ ├── Problem-Practice.md │ │ ├── Tries and its Implementation.md │ │ ├── tries-examples.md │ │ └── tries-theory.md │ ├── _category_.json │ ├── advance-data-structure │ │ ├── _category_.json │ │ ├── disjoint-set.md │ │ ├── fenwick-tree.md │ │ └── segment-tree.md │ ├── algorithms │ │ ├── Edmonds-Karp Algorithm │ │ │ └── edmonds-karp-algorithm.md │ │ ├── Application-of-Recursion.md │ │ ├── Application-of-linked-list.md │ │ ├── Bentley-Ottmann-Algorithm │ │ │ └── bentley-ottmann-algo.md │ │ ├── Bloom-Filter-Algorithm.md │ │ ├── Buchberger's Algorithm │ │ │ └── Buchberger's Algorithm.md │ │ ├── CNN-deep-learning-algorithm.md │ │ ├── Computer-Vision-ML-Theory.md │ │ ├── DLX algorithm │ │ │ └── DLX.md │ │ ├── Dijkstra’s Algorithm.md │ │ ├── DutchNationalFlag-algorithm │ │ │ ├── DutchNationalFlag.md │ │ │ └── _category_.json │ │ ├── Encryption algorithms │ │ │ ├── Caesar Cipher.md │ │ │ ├── advanced_encryption_standard.md │ │ │ ├── asymmetric_encryption.md │ │ │ ├── blockchain_encryption.md │ │ │ ├── elliptic_curve_cryptography.md │ │ │ ├── hashing.md │ │ │ ├── homomorphic-encryption.md │ │ │ ├── post-quantum-encryption.md │ │ │ ├── steganography-algo.md │ │ │ └── symmetric_encryption.md │ │ ├── GAN-ML-Algorithm.md │ │ ├── Gale-Shapley-Algorithm │ │ │ └── GaleShapley.md │ │ ├── Hashing-algorithm.md │ │ ├── Legendre's Algorithm │ │ │ └── legendre-algo.md │ │ ├── N-Queens-Dynamic-programming-algorithm.md │ │ ├── RNN-ML-algorithm.md │ │ ├── SMAWK Algorithm │ │ │ └── SMAWK Algorithm.md │ │ ├── Scheduling Algorithms │ │ │ ├── EarliestDeadlineFirst.md │ │ │ ├── FirstComeFirstServed.md │ │ │ ├── LeastRecentlyUsed.md │ │ │ ├── PriorityScheduling.md │ │ │ ├── RoundRobin.md │ │ │ ├── ShortestJobRemainingFirst.md │ │ │ ├── SweepLine.md │ │ │ ├── _category_.json │ │ │ ├── least-recently-used.md │ │ │ ├── multilevel-queue-scheduling.md │ │ │ └── priority-scheduling.md │ │ ├── Searching Algorithms │ │ │ ├── A-Search.md │ │ │ ├── AO-Search.md │ │ │ ├── Best-First-Search.md │ │ │ ├── BinarySearch.md │ │ │ ├── Boyer-Moore-Search.md │ │ │ ├── Breadth-First-Search-(BFS)-Algo.md │ │ │ ├── ComparisonSearch.md │ │ │ ├── Depth-First-Search-(DFS)-Algo.md │ │ │ ├── DigitalSearch.md │ │ │ ├── ExponentialSerach.md │ │ │ ├── FibbonaciSearch.md │ │ │ ├── HashingSearch.md │ │ │ ├── Interpolation-search-algorithm.md │ │ │ ├── InterpolationSearch.md │ │ │ ├── JumpSearch.md │ │ │ ├── LinearSearch.md │ │ │ ├── Meta-binary-search.md │ │ │ ├── PrioritySearch.md │ │ │ ├── Rabin-Karp-Algorithm.md │ │ │ ├── SentinelSearch.md │ │ │ ├── Sublist-Search.md │ │ │ ├── TernarySearch.md │ │ │ └── Uniform-Cost-Search.md │ │ ├── Two-Pointers │ │ │ ├── IntroductionToTwoPointers.png │ │ │ ├── Max_Distance.md │ │ │ ├── Problem-Practice.md │ │ │ ├── _category_.json │ │ │ ├── imp-of-two-pointers.md │ │ │ └── introduction-to-two-pointers.md │ │ ├── Yolo-Object-detection-ML-Algorithm.md │ │ ├── _category_.json │ │ ├── backtracking-algorithms │ │ │ ├── Bron-Kerbosch-Algorithm.md │ │ │ ├── N-QueensProblem.md │ │ │ ├── _category_.json │ │ │ ├── backtracking-questions.md │ │ │ ├── hamilton-path-cyle.md │ │ │ ├── imp-of-backtracking.md │ │ │ ├── m-coloring.md │ │ │ ├── n-queens_algorithm.md │ │ │ └── what-is-backtracking.md │ │ ├── greedy-algorithms │ │ │ ├── Fractional_Knapsack.md │ │ │ ├── Huffman-coding.md │ │ │ ├── Job-sequencing-problem.md │ │ │ ├── Prim’s-Minimum-Spanning-Tree.md │ │ │ ├── Problem-Practice.md │ │ │ ├── _category_.json │ │ │ ├── activity-selection.md │ │ │ ├── commonly-asked-greedy-questions.md │ │ │ ├── fractional-knapsack.md │ │ │ └── greedy-theory.md │ │ ├── kadane-algorithm │ │ │ ├── _category_.json │ │ │ └── kadane-algo.md │ │ ├── mathematics-algorithms │ │ │ ├── _category_.json │ │ │ ├── discrete-logarithm.md │ │ │ ├── euclidean-algorithm.md │ │ │ ├── fermat-little-theorem.md │ │ │ ├── gcd-lcm.md │ │ │ ├── imp-of-mathematics.md │ │ │ ├── modular-arithmetic.md │ │ │ ├── sieve-of-eratosthenes.md │ │ │ ├── sweep-line-algorithm.md │ │ │ └── what-is-mathematical-algorithms.md │ │ ├── memoisation-algorithms │ │ │ ├── _category_.json │ │ │ ├── imp-of-memoisation.md │ │ │ └── what-is-memoisation.md │ │ ├── modular-exponentiation-algorithm.md │ │ ├── moores-voting-algorithm │ │ │ └── moore-voting-algo.md │ │ ├── recursive-algorithms │ │ │ ├── DirectRecursion.md │ │ │ ├── IndirectRecursion.md │ │ │ ├── _category_.json │ │ │ ├── mutual-recursion.md │ │ │ ├── non-tail-recursion.md │ │ │ ├── tail-recursion.md │ │ │ └── tree-recursion.md │ │ ├── sorting-algorithms │ │ │ ├── BitonicSort.md │ │ │ ├── BogoSort.md │ │ │ ├── BubbleSort.md │ │ │ ├── BucketSort.md │ │ │ ├── CocktailShakerSort.md │ │ │ ├── CombSort.md │ │ │ ├── CountingSort.md │ │ │ ├── CycleSort.md │ │ │ ├── Dutch-flag-algo.md │ │ │ ├── GnomeSort.md │ │ │ ├── HeapSort.md │ │ │ ├── InsertionSort.md │ │ │ ├── JumpSort.md │ │ │ ├── MergeSort.md │ │ │ ├── Odd-Even-Sort.md │ │ │ ├── OddEvenSort.md │ │ │ ├── Pancake-sorting-algorithm.md │ │ │ ├── Pigeonhole.md │ │ │ ├── QuickSort.md │ │ │ ├── RadixSort.md │ │ │ ├── SelectionSort.md │ │ │ ├── ShellSort.md │ │ │ ├── StoogeSort.md │ │ │ ├── TimSort.md │ │ │ ├── Topological-sorting-algorithm.md │ │ │ ├── TreeSort.md │ │ │ ├── _category_.json │ │ │ ├── odd-even-sorting.md │ │ │ ├── parity-partition-sort.md │ │ │ └── strand-sort.md │ │ └── string-algorithms │ │ │ ├── Naive-String-Matching-Algorithm.md │ │ │ ├── Naive-search.md │ │ │ ├── Suffix-Tree-Algorithm.md │ │ │ ├── Z-Algorithm.md │ │ │ ├── _category_.json │ │ │ ├── aho-corasick-algorithm.md │ │ │ ├── apostolico-giancarlo-algorithm.md │ │ │ ├── berry-ravindran-algorithm.md │ │ │ ├── bitap-algorithm.md │ │ │ ├── bndm-algorithm.md │ │ │ ├── colussi-algorithm.md │ │ │ ├── commentz-walter-algorithm.md │ │ │ ├── crochemores-algorithm.md │ │ │ ├── finite-state-automation-algorithm.md │ │ │ ├── kmp-algorithm.md │ │ │ ├── kmp-algorithms.md │ │ │ ├── lcs-algorithm.md │ │ │ ├── levenshtein-distance-algorithm.md │ │ │ ├── manacher-algorithm.md │ │ │ ├── needleman-wunsch-algorithm.md │ │ │ ├── not-so-naive-algorithm.md │ │ │ ├── optimal-mismatch-algorithm.md │ │ │ ├── quick-search-algorithm.md │ │ │ ├── rabin-karp-algorithms.md │ │ │ ├── reverse-factor-algorithm.md │ │ │ ├── shift-or-algorithm.md │ │ │ ├── simon-algorithm.md │ │ │ ├── smith-waterman-algorithm.md │ │ │ ├── suffix-array-algorithm.md │ │ │ ├── sunday-algorithm.md │ │ │ ├── turbo-boyer-moore-algorithm.md │ │ │ ├── two-way-string-matching-algorithm.md │ │ │ ├── ukkonens-algorithm.md │ │ │ └── zhu-takaoka-algorithm.md │ ├── b-tree │ │ ├── B-Tree-1.md │ │ ├── B-Tree-2.md │ │ ├── B-Tree-3.md │ │ └── image │ │ │ ├── BTree2Ins.png │ │ │ ├── BTreeIns3.png │ │ │ ├── BTreeIns4.png │ │ │ ├── BTreeIns6.png │ │ │ ├── BTreeSplit-1024x321.jpg │ │ │ ├── Btree1.png │ │ │ ├── delete.png │ │ │ ├── delete2.png │ │ │ ├── output253.png │ │ │ ├── output254.png │ │ │ ├── output255.png │ │ │ └── output256.png │ ├── backtracking algorithms │ │ └── Tiling-problem.md │ ├── balancedBinTree │ │ ├── balancedBinTree.md │ │ ├── balancedBinTreejava.md │ │ └── balancedBinTreejavaScript.md │ ├── basic-dsa │ │ ├── Method Overriding.md │ │ ├── Operator Overloading.md │ │ ├── Strings │ │ │ ├── Advanced-techniques.md │ │ │ ├── Highest freqyuency letter.md │ │ │ ├── Isomorphic strings.md │ │ │ ├── Reversing a string.md │ │ │ ├── What_is String.md │ │ │ └── kmp-algo.md │ │ ├── _category_.json │ │ ├── array │ │ │ ├── 2d-arrays.md │ │ │ ├── Kadane-Algorithm.md │ │ │ ├── ProudctOfArrayExceptSelf.md │ │ │ ├── _category_.json │ │ │ ├── arrays-bubblesort-dsa.md │ │ │ ├── arrays-dsa.md │ │ │ ├── arrays-insertionsort.md │ │ │ ├── arrays-kadanesalgorithm-dsa.md │ │ │ ├── arrays-selectionsort.md │ │ │ ├── bucket-sort.md │ │ │ ├── counting-sort.md │ │ │ ├── heap-sort.md │ │ │ ├── quick-sort.md │ │ │ └── radix-sort.md │ │ ├── matrix-data-structure.md │ │ └── pointer.md │ ├── binary-search-tree │ │ ├── Binary search tree.md │ │ ├── Post_order_traversal.md │ │ ├── Problem-Practice.md │ │ ├── _category_.json │ │ ├── avl-tree.md │ │ ├── delete-BST.md │ │ ├── inorder-predecessor-BST.md │ │ ├── inorder-successor-BST.md │ │ ├── insert-BST.md │ │ ├── red-black-trees.md │ │ └── search-BST.md │ ├── binary-search │ │ ├── Exponential-Search.md │ │ ├── Iterative_binary_search.md │ │ ├── Painter_Partition_problem.md │ │ ├── Problem-Practice.md │ │ ├── _category_.json │ │ ├── binary-search.md │ │ ├── binary-search_rotated-sorted-array.md │ │ ├── binary.md │ │ ├── binary_search_questions.md │ │ ├── matrix-binary-dsa.md │ │ └── recursive_binary_search.md │ ├── binary-trees │ │ ├── _category_.json │ │ ├── basic-operations.md │ │ ├── binary-tree.md │ │ ├── expression-tree.md │ │ ├── maximum-depth.md │ │ ├── merkle-tree.md │ │ ├── minimum-depth.md │ │ ├── practice-problems.md │ │ └── splay-trees.md │ ├── bit-manipulation │ │ ├── _category_.json │ │ ├── bit-manipulation-technique.md │ │ ├── bitmanipulation-practice-problem.md │ │ ├── brain-kernighan-algo.md │ │ ├── clear-ith-Bit.md │ │ ├── count-set-bits.md │ │ ├── power-of-two.md │ │ └── toggle-bit-at-position.md │ ├── challenges solutions │ │ ├── Challenge4.md │ │ ├── _category_.json │ │ ├── challenge1.md │ │ ├── challenge2.md │ │ └── challenge3.md │ ├── combinatorics │ │ ├── Practice-problems.md │ │ ├── _category_.json │ │ ├── combinatorics-examples.md │ │ └── combinatorics-theory.md │ ├── complexity │ │ ├── _category_.json │ │ ├── how-to-calculate-complexity.md │ │ ├── image-1.png │ │ ├── image.png │ │ ├── space-complexity.md │ │ ├── time-complexity.md │ │ └── time-space-complexity.md │ ├── dsa │ │ └── _category_.json │ ├── dynamic-programming │ │ ├── Beautiful-Subgrids.md │ │ ├── Matrix-chain-multiplication.md │ │ ├── Multistage-graph.md │ │ ├── Two-City-Scheduling-3D-DP.md │ │ ├── _category_.json │ │ ├── approaches.md │ │ ├── dynamic-programming-optimizations.md │ │ ├── fence-painting.md │ │ ├── house-robber.md │ │ ├── how-to-identify.md │ │ ├── longest-zig-zag-subsequence.md │ │ ├── longest_common_subsequence.md │ │ ├── minimum_flips_to_zero_matrix.md │ │ ├── palindrome_partitioning_IV.md │ │ ├── practice-problems-different-patterns.md │ │ └── trapped-rainwater.md │ ├── fundamentals │ │ ├── Conditional Statement.md │ │ ├── Functions │ │ │ ├── Function Call.md │ │ │ ├── Function Closures.md │ │ │ ├── Function Composition.md │ │ │ ├── Function Currying.md │ │ │ ├── Function Declaration.md │ │ │ ├── Function Memoization.md │ │ │ ├── Function Overloading.md │ │ │ ├── Function Parameters.md │ │ │ ├── Function Recursion.md │ │ │ ├── Function Return.md │ │ │ └── Function Scope.md │ │ └── Loops.md │ ├── game-Theory │ │ ├── gameTheory.md │ │ └── gameTheoryExamples.md │ ├── graphs │ │ ├── Adjacency-List.md │ │ ├── Adjacency-Matrix.md │ │ ├── Disjoint Set Union.md │ │ ├── Johnson's-algo.md │ │ ├── Longest-path-in-DAG.md │ │ ├── Page-Rank-Algorithm.md │ │ ├── Practice Problems.md │ │ ├── _category_.json │ │ ├── ant-colony-optimization-tsp.md │ │ ├── bfs.md │ │ ├── bipartite-graph.md │ │ ├── dfs.md │ │ ├── dfs_java.md │ │ ├── dijkstra-algo.md │ │ ├── eulerian-graphs.md │ │ ├── flood-fill.md │ │ ├── floyd-algorithm.md │ │ ├── graph-cloning.md │ │ ├── graph-coloring.md │ │ ├── graph-reversal.md │ │ ├── hopcroft-karp-algorithm.md │ │ ├── kahn-algo.md │ │ ├── kosaraju-algorithm.md │ │ ├── kruskal-algorithm.md │ │ ├── minimum-cost-spanning-tree.md │ │ ├── practice-problems.md │ │ ├── prims-algorithm.md │ │ ├── shortest-path-algorithms │ │ │ ├── A-star-algorithm.md │ │ │ ├── Prims-algorithm.md │ │ │ ├── _category_.json │ │ │ ├── bell-man-ford-algorithm.md │ │ │ ├── dijkstra-algorithm.md │ │ │ └── floyd-warshall-algorithm.md │ │ ├── tarjans-algo.md │ │ └── warshall-algo.md │ ├── greedy-algorithms │ │ ├── Graph-Coloring.md │ │ ├── fractional-knapsack-algorithm.md │ │ ├── job-scheduling.md │ │ ├── kruskals-algorithm.md │ │ └── prims-algorithm.md │ ├── hash │ │ ├── Practice Problems.md │ │ ├── _category_.json │ │ └── hash-tables.md │ ├── heap │ │ ├── Add-Merge-k-sorted-lists.md │ │ ├── Kth-largest-using-min_heap.md │ │ ├── Median-of-a-stream.md │ │ ├── Problem-Practice.md │ │ ├── _category_.json │ │ ├── heap-basics.md │ │ ├── heap-operations.md │ │ ├── kth-largest.md │ │ ├── kth-smallest.md │ │ ├── time-complexity.md │ │ └── top-k-frequent-elements.md │ ├── knapsack-disaster-relief │ │ └── knapsack-disaster-relief.md │ ├── linked-list │ │ ├── CircularDoubly.png │ │ ├── CircularLinkedList.png │ │ ├── Doubly-linked-list-C.md │ │ ├── DoublyLL.png │ │ ├── Hare-Tortoise.md │ │ ├── Intersection_Linked_list_python.md │ │ ├── LinkedList.png │ │ ├── Polynomial-Addition.md │ │ ├── Polynomial_multiplication.md │ │ ├── Practice-Problems.md │ │ ├── _category_.json │ │ ├── circular-doubly-linked-list.md │ │ ├── doubly-linked-list.md │ │ ├── floyds-cycle-detection.md │ │ ├── gircular-linked-list.md │ │ ├── intersection-linked-lists.md │ │ ├── introduction-to-linked-list.md │ │ ├── linked-list-approaches.md │ │ ├── max-twin-sum-of-linked-list.md │ │ ├── merge-two-sorted-list.md │ │ ├── next-greater-node-in-linked-list.md │ │ ├── polynomial-representation.md │ │ ├── range-sum-of-linked-list.md │ │ ├── remove-duplicates-from-sorted-list.md │ │ └── swapping-node-in-a-linked-list-at-kth-node.md │ ├── machine-learning │ │ ├── AdaBoost.md │ │ ├── Autoencoders.md │ │ ├── BeamSearch.md │ │ ├── Catboost.md │ │ ├── Convolutional_Neural_Network.md │ │ ├── DBSCAN_Clustering_Algorithm.md │ │ ├── Extra_Trees.md │ │ ├── GBM.md │ │ ├── Gaussian_Mixture_Model.md │ │ ├── Generative_Adversarial_Networks.md │ │ ├── HBOS.md │ │ ├── Hidden_Markov_Model.md │ │ ├── HierarchialClustering.md │ │ ├── Independent Component Analysis.md │ │ ├── K-Means_clustering.md │ │ ├── K-NearestNeighbours.md │ │ ├── LinearRegression.md │ │ ├── LogisticRegression.md │ │ ├── Long_Short_Term_Memory.md │ │ ├── PC_Visualizations.md │ │ ├── Recurrent_Neural_Network.md │ │ ├── Reinforcement_Learning.md │ │ ├── RidgeRegression.md │ │ ├── SDG.md │ │ ├── SVM.md │ │ ├── Silhoutte.md │ │ ├── Singular_Value_Decomposition_Algorithm.md │ │ ├── Statistical_Anomaly_Detection.md │ │ ├── Time_Series_Forecasting_Algo.md │ │ ├── XGBoost.md │ │ ├── decisionTree.md │ │ ├── deep-q-networks.md │ │ ├── hierarchical-clustering-visualizations.md │ │ ├── lasso_regression.md │ │ ├── naive-bayes.md │ │ ├── neuralNetworks.md │ │ ├── policy-gradient-visualization.md │ │ ├── principal-component-analysis.md │ │ ├── qLearning.md │ │ ├── random-forest.md │ │ ├── regression_algorithm.md │ │ ├── supervised_learning_algo.md │ │ ├── support-vector-machine.md │ │ ├── t-SNE_Dimensionality_Reduction.md │ │ ├── tsne-visualization.md │ │ └── unsupervised_learning_algo.md │ └── sortings │ │ ├── Sortings.md │ │ └── shell-sort .md ├── index.md ├── languages │ ├── C │ │ ├── c-0.md │ │ ├── c-1.md │ │ ├── c-2.md │ │ ├── c-3.md │ │ ├── c-4.md │ │ ├── c-5.md │ │ └── c-6.md │ ├── SQL │ │ ├── sql-1.md │ │ ├── sql-10.md │ │ ├── sql-11.md │ │ ├── sql-12.md │ │ ├── sql-13.md │ │ ├── sql-14.md │ │ ├── sql-15.md │ │ ├── sql-16.md │ │ ├── sql-17.md │ │ ├── sql-18.md │ │ ├── sql-19.md │ │ ├── sql-2.md │ │ ├── sql-20.md │ │ ├── sql-21.md │ │ ├── sql-22.md │ │ ├── sql-23.md │ │ ├── sql-24.md │ │ ├── sql-25.md │ │ ├── sql-26.md │ │ ├── sql-27.md │ │ ├── sql-28.md │ │ ├── sql-29.md │ │ ├── sql-3.md │ │ ├── sql-30.md │ │ ├── sql-31.md │ │ ├── sql-32.md │ │ ├── sql-33.md │ │ ├── sql-4.md │ │ ├── sql-5.md │ │ ├── sql-6.md │ │ ├── sql-7.md │ │ ├── sql-8.md │ │ └── sql-9.md │ ├── _category_.json │ ├── cpp │ │ ├── _category_.json │ │ ├── cp-0.md │ │ ├── cp-1.md │ │ ├── cp-10.md │ │ ├── cp-11.md │ │ ├── cp-12.md │ │ ├── cp-13.md │ │ ├── cp-2.md │ │ ├── cp-3.md │ │ ├── cp-4.md │ │ ├── cp-5.md │ │ ├── cp-6.md │ │ ├── cp-7.md │ │ ├── cp-8.md │ │ └── cp-9.md │ ├── csharp │ │ ├── _category_.json │ │ ├── csharp-0.md │ │ ├── csharp-1.md │ │ ├── csharp-2.md │ │ ├── csharp-3.md │ │ ├── csharp-4.md │ │ ├── csharp-5.md │ │ ├── csharp-6.md │ │ ├── csharp-7.md │ │ ├── csharp-8.md │ │ └── csharp-9.md │ ├── java │ │ ├── _category_.json │ │ ├── ex1.md │ │ ├── ex2.md │ │ ├── ex4.md │ │ ├── java-1.md │ │ ├── java-10.md │ │ ├── java-11.md │ │ ├── java-12.md │ │ ├── java-2.md │ │ ├── java-3.md │ │ ├── java-4.md │ │ ├── java-5-1.md │ │ ├── java-6.md │ │ ├── java-7.md │ │ ├── java-8.md │ │ └── java-9.md │ ├── javascript │ │ ├── _category_.json │ │ ├── js-0.md │ │ ├── js-1.md │ │ ├── js-10.md │ │ ├── js-11.md │ │ ├── js-12.md │ │ ├── js-13.md │ │ ├── js-14.md │ │ ├── js-15.md │ │ ├── js-16.md │ │ ├── js-17.md │ │ ├── js-2.md │ │ ├── js-3.md │ │ ├── js-4.md │ │ ├── js-5.md │ │ ├── js-6.md │ │ ├── js-7.md │ │ ├── js-8.md │ │ └── js-9.md │ └── python │ │ ├── _category_.json │ │ ├── py-1.md │ │ ├── py-10.md │ │ ├── py-11.md │ │ ├── py-12.md │ │ ├── py-13.md │ │ ├── py-14.md │ │ ├── py-15.md │ │ ├── py-16.md │ │ ├── py-17.md │ │ ├── py-18.md │ │ ├── py-2.md │ │ ├── py-3.md │ │ ├── py-4.md │ │ ├── py-5.md │ │ ├── py-6.md │ │ ├── py-7.md │ │ ├── py-8.md │ │ └── py-9.md └── programming-fundamentals │ ├── _category_.json │ ├── control-structures │ ├── _category_.json │ ├── break.md │ ├── continue.md │ ├── do-while-loop.md │ ├── finally.md │ ├── for-loop.md │ ├── if-else.md │ ├── return.md │ ├── switch.md │ ├── throw.md │ ├── try-catch.md │ └── while-loop.md │ ├── functions │ ├── _category_.json │ ├── function-call.md │ ├── function-closures.md │ ├── function-composition.md │ ├── function-currying.md │ ├── function-declaration.md │ ├── function-memoization.md │ ├── function-overloading.md │ ├── function-parameters.md │ ├── function-recursion.md │ ├── function-return.md │ └── function-scope.md │ ├── language-syntax │ ├── _category_.json │ ├── arrays.md │ ├── classes.md │ ├── conditionals.md │ ├── functions.md │ ├── inheritance.md │ ├── interfaces.md │ ├── loops.md │ ├── objects.md │ ├── operators.md │ ├── polymorphism.md │ ├── strings.md │ └── variables.md │ ├── oop-basics │ ├── _category_.json │ ├── abstract-classes.md │ ├── abstraction.md │ ├── classes.md │ ├── composition.md │ ├── delegation.md │ ├── encapsulation.md │ ├── inheritance.md │ ├── interfaces.md │ ├── mixins.md │ ├── objects.md │ └── polymorphism.md │ └── pseudo-code │ ├── Introduction.md │ ├── arrays.md │ ├── classes.md │ ├── conditionals.md │ ├── functions.md │ ├── inheritance.md │ ├── loops.md │ ├── objects.md │ ├── operators.md │ ├── polymorphism.md │ ├── strings.md │ └── variables.md ├── docusaurus.config.js ├── dsa-interview-sidebars.js ├── dsa-interview └── index.md ├── festhack.jpg ├── girlscript.jpg ├── learn.md ├── package.json ├── plugins └── my-plugin │ └── index.js ├── postman.png ├── renovate.json ├── sidebars.js ├── src ├── components │ ├── AdsComponent │ │ ├── Ads.tsx │ │ ├── index.tsx │ │ └── style.css │ ├── ChallengeCard.tsx │ ├── DSA │ │ ├── DP │ │ │ └── Parsing A Boolean Expression.md │ │ ├── arrays │ │ │ ├── ArrayVisualizations │ │ │ │ └── index.tsx │ │ │ ├── BubbleSortVisualization │ │ │ │ ├── BubbleSortVisualization.css │ │ │ │ └── index.tsx │ │ │ ├── HeapSortVisualization │ │ │ │ ├── index.tsx │ │ │ │ └── style.css │ │ │ ├── InsertionSortVisualization │ │ │ │ ├── index.tsx │ │ │ │ └── style.css │ │ │ ├── MergeSortVisualization │ │ │ │ ├── index.tsx │ │ │ │ └── style.css │ │ │ ├── QuickSortVisualization │ │ │ │ ├── index.tsx │ │ │ │ └── style.css │ │ │ ├── SelectionSortVisualization │ │ │ │ ├── SelectionSortVisualization.css │ │ │ │ └── index.tsx │ │ │ └── ShellSortVisualisation │ │ │ │ ├── Shellsort.css │ │ │ │ └── index.tsx │ │ └── graphs │ │ │ ├── DijkstraVisualizations │ │ │ └── index.tsx │ │ │ └── FloydWarshallVisualizations │ │ │ └── index.tsx │ ├── GiscusComponent │ │ └── index.tsx │ ├── Header.tsx │ ├── Highlight │ │ └── index.js │ ├── Homepage │ │ ├── CallToActionSection.tsx │ │ ├── ContributeSection.tsx │ │ ├── FeaturesSection.tsx │ │ ├── GetInvolvedSection.tsx │ │ ├── HeroSection.tsx │ │ ├── HowItWorksSection.tsx │ │ ├── PopularAlgorithmsSection.tsx │ │ ├── TechnologiesSection.tsx │ │ ├── UserTestimonialsSection.tsx │ │ └── index.tsx │ ├── QuizCard.tsx │ ├── Scroller │ │ ├── BottomToTop │ │ │ └── BottomToTop.tsx │ │ └── TopToBottom │ │ │ └── TopToBottom.tsx │ ├── Visualizing │ │ └── index.tsx │ └── chatbot.jsx ├── css │ ├── BottomToTop.module.css │ ├── TopToBottom.module.css │ ├── custom.css │ └── visualiezer.css ├── data │ ├── challengeData.ts │ ├── quizData.ts │ ├── testimonialsData.ts │ └── topics.ts ├── pages │ ├── License.md │ ├── about │ │ └── index.tsx │ ├── blogs │ │ └── index.tsx │ ├── challenges │ │ ├── challenge1.tsx │ │ ├── challenge2.tsx │ │ ├── challenge3.tsx │ │ └── index.tsx │ ├── community │ │ └── index.tsx │ ├── contact │ │ └── index.tsx │ ├── contributors │ │ └── index.tsx │ ├── dsa-roadmap │ │ └── index.tsx │ ├── faq │ │ └── index.tsx │ ├── index.js │ ├── leaderboard │ │ └── index.tsx │ ├── markdown-page.md │ ├── practice │ │ └── index.tsx │ ├── quiz-solutions │ │ ├── array.md │ │ ├── b-trees.md │ │ ├── binary-search-trees.md │ │ ├── binary-trees.md │ │ ├── index.tsx │ │ ├── queues.md │ │ ├── red-black-trees.md │ │ └── stack.md │ ├── quizes │ │ ├── arrays.tsx │ │ ├── b-tree.tsx │ │ ├── binary-search-tree.tsx │ │ ├── binary-tree.tsx │ │ ├── index.tsx │ │ ├── queue.tsx │ │ ├── queues.tsx │ │ ├── red-black-tree.tsx │ │ └── stack.tsx │ ├── resources │ │ └── index.tsx │ ├── roadmap │ │ └── index.tsx │ └── terms │ │ └── index.tsx └── theme │ ├── Admonition │ ├── Icon │ │ └── Danger.js │ └── Layout │ │ └── index.js │ ├── CodeBlock │ └── Line │ │ ├── index.js │ │ └── styles.module.css │ ├── Footer │ └── index.tsx │ ├── MDXComponents.js │ ├── Mermaid │ └── index.js │ ├── ReactLiveScope │ ├── components.js │ └── index.js │ └── Root.js ├── static ├── .nojekyll ├── ads.txt ├── banner │ ├── banner-1.jpg │ ├── banner-1.png │ ├── banner-10.jpg │ ├── banner-13.jpg │ ├── banner-2.jpg │ ├── banner-3.jpg │ └── banner-4.jpg ├── images │ ├── avatar-2.jpg │ ├── avatar1.jpg │ ├── avatar2.jpg │ ├── avatar3.jpg │ ├── docusaurus.svg │ ├── github.svg │ ├── jsx.svg │ ├── mission.jpg │ ├── node-js.svg │ ├── tailwindcss.svg │ ├── team-member-1.jpg │ ├── team-member-2.jpg │ ├── team-member-3.jpg │ ├── team-member-4.jpg │ ├── team-member-5.jpg │ └── tsx.svg ├── img │ ├── docusaurus-social-card.jpg │ ├── docusaurus.png │ ├── favicon.ico │ ├── logo.svg │ ├── undraw_docusaurus_mountain.svg │ ├── undraw_docusaurus_react.svg │ └── undraw_docusaurus_tree.svg ├── landing │ ├── calendar.svg │ ├── chat.svg │ ├── customer.svg │ ├── grid-dark.svg │ └── grid-light.svg └── logo │ ├── algo-1.png │ ├── algo-3.png │ ├── algo-banner.png │ ├── algo.png │ ├── dsa.png │ ├── ft-copy.png │ ├── logo.png │ └── neural.png └── tailwind.config.js /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @ajay-dhangar -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/ISSUE_TEMPLATE/custom.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/idea.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/ISSUE_TEMPLATE/idea.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/autolabel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/workflows/autolabel.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/issue_close_open.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/workflows/issue_close_open.yml -------------------------------------------------------------------------------- /.github/workflows/lighthouse-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/workflows/lighthouse-report.yml -------------------------------------------------------------------------------- /.github/workflows/lighthouserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/workflows/lighthouserc.json -------------------------------------------------------------------------------- /.github/workflows/pr_merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/workflows/pr_merge.yaml -------------------------------------------------------------------------------- /.github/workflows/pr_raise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/workflows/pr_raise.yml -------------------------------------------------------------------------------- /.github/workflows/pr_validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/workflows/pr_validation.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.github/workflows/test-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/SECURITY.md -------------------------------------------------------------------------------- /admin/scripts/formatLighthouseReport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/admin/scripts/formatLighthouseReport.js -------------------------------------------------------------------------------- /admin/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/admin/scripts/package.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/babel.config.js -------------------------------------------------------------------------------- /blog/20-most-important-coding-pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/20-most-important-coding-pattern.md -------------------------------------------------------------------------------- /blog/Common-Recursion-Patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/Common-Recursion-Patterns.md -------------------------------------------------------------------------------- /blog/Exploring-Graph-Algorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/Exploring-Graph-Algorithms.md -------------------------------------------------------------------------------- /blog/Getting-started-with-array-data-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/Getting-started-with-array-data-structure.md -------------------------------------------------------------------------------- /blog/Kadanes-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/Kadanes-algorithm.md -------------------------------------------------------------------------------- /blog/Recursion-vs-Iteration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/Recursion-vs-Iteration.md -------------------------------------------------------------------------------- /blog/Understanding-Graph-Representation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/Understanding-Graph-Representation.md -------------------------------------------------------------------------------- /blog/a-very-useful-data-structure-linked-lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/a-very-useful-data-structure-linked-lists.md -------------------------------------------------------------------------------- /blog/a-very-useful-data-structure-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/a-very-useful-data-structure-string.md -------------------------------------------------------------------------------- /blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/authors.yml -------------------------------------------------------------------------------- /blog/bloom-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/bloom-filter.md -------------------------------------------------------------------------------- /blog/comparing-sortings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/comparing-sortings.md -------------------------------------------------------------------------------- /blog/mastering-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/mastering-recursion.md -------------------------------------------------------------------------------- /blog/optimizing-recursive-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/optimizing-recursive-functions.md -------------------------------------------------------------------------------- /blog/practical-applications-of-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/practical-applications-of-recursion.md -------------------------------------------------------------------------------- /blog/understanding-big-o-notation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/understanding-big-o-notation.md -------------------------------------------------------------------------------- /blog/understanding-time-space-complexity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/blog/understanding-time-space-complexity.md -------------------------------------------------------------------------------- /docs/basic-data-structures/Method Overriding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/Method Overriding.md -------------------------------------------------------------------------------- /docs/basic-data-structures/Operator Overloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/Operator Overloading.md -------------------------------------------------------------------------------- /docs/basic-data-structures/Strings/Advanced-techniques.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/Strings/Advanced-techniques.md -------------------------------------------------------------------------------- /docs/basic-data-structures/Strings/Isomorphic strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/Strings/Isomorphic strings.md -------------------------------------------------------------------------------- /docs/basic-data-structures/Strings/Reversing a string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/Strings/Reversing a string.md -------------------------------------------------------------------------------- /docs/basic-data-structures/Strings/What_is String.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/Strings/What_is String.md -------------------------------------------------------------------------------- /docs/basic-data-structures/Strings/kmp-algo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/Strings/kmp-algo.md -------------------------------------------------------------------------------- /docs/basic-data-structures/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/_category_.json -------------------------------------------------------------------------------- /docs/basic-data-structures/array/2d-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/array/2d-arrays.md -------------------------------------------------------------------------------- /docs/basic-data-structures/array/Kadane-Algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/array/Kadane-Algorithm.md -------------------------------------------------------------------------------- /docs/basic-data-structures/array/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/array/_category_.json -------------------------------------------------------------------------------- /docs/basic-data-structures/array/arrays-bubblesort-dsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/array/arrays-bubblesort-dsa.md -------------------------------------------------------------------------------- /docs/basic-data-structures/array/arrays-dsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/array/arrays-dsa.md -------------------------------------------------------------------------------- /docs/basic-data-structures/array/arrays-insertionsort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/array/arrays-insertionsort.md -------------------------------------------------------------------------------- /docs/basic-data-structures/array/arrays-selectionsort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/array/arrays-selectionsort.md -------------------------------------------------------------------------------- /docs/basic-data-structures/array/bucket-sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/array/bucket-sort.md -------------------------------------------------------------------------------- /docs/basic-data-structures/array/counting-sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/array/counting-sort.md -------------------------------------------------------------------------------- /docs/basic-data-structures/array/heap-sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/array/heap-sort.md -------------------------------------------------------------------------------- /docs/basic-data-structures/array/quick-sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/array/quick-sort.md -------------------------------------------------------------------------------- /docs/basic-data-structures/array/radix-sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/array/radix-sort.md -------------------------------------------------------------------------------- /docs/basic-data-structures/matrix-data-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/matrix-data-structure.md -------------------------------------------------------------------------------- /docs/basic-data-structures/pointer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/basic-data-structures/pointer.md -------------------------------------------------------------------------------- /docs/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/content.md -------------------------------------------------------------------------------- /docs/data-structures/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/data-structures/_category_.json -------------------------------------------------------------------------------- /docs/data-structures/imp-of-dsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/data-structures/imp-of-dsa.md -------------------------------------------------------------------------------- /docs/data-structures/roadmap-to-dsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/data-structures/roadmap-to-dsa.md -------------------------------------------------------------------------------- /docs/data-structures/types-of-dsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/data-structures/types-of-dsa.md -------------------------------------------------------------------------------- /docs/data-structures/what-is-dsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/data-structures/what-is-dsa.md -------------------------------------------------------------------------------- /docs/extra/Approximation Algorithm/Approximation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Approximation Algorithm/Approximation.md -------------------------------------------------------------------------------- /docs/extra/Banker's Algorithm/Banker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Banker's Algorithm/Banker.md -------------------------------------------------------------------------------- /docs/extra/Boyer Moore/Boyer-Moore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Boyer Moore/Boyer-Moore.md -------------------------------------------------------------------------------- /docs/extra/Circular_array/Application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Circular_array/Application.md -------------------------------------------------------------------------------- /docs/extra/Circular_array/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Circular_array/Introduction.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/Add_two_number_as_LL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/Add_two_number_as_LL.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/Contains_duplicate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/Contains_duplicate.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/Convert Date to Binary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/Convert Date to Binary.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/Cousins in Binary Tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/Cousins in Binary Tree.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/Delete middle node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/Delete middle node.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/Loop in linked list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/Loop in linked list.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/Merge_K_Sorted_Arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/Merge_K_Sorted_Arrays.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/Palindrome-number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/Palindrome-number.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/Plus-one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/Plus-one.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/Sliding Window Maximum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/Sliding Window Maximum.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/Symmetric Tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/Symmetric Tree.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/house-robber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/house-robber.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/lowest_common_ancestor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/lowest_common_ancestor.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/merge_intervals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/merge_intervals.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/odd-even-linked-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/odd-even-linked-list.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/palindrome_linked_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/palindrome_linked_list.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/reverse-bits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/reverse-bits.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/reverse-linked-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/reverse-linked-list.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/rotten-oranges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/rotten-oranges.md -------------------------------------------------------------------------------- /docs/extra/DSA-Problem-Solution/two_sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/DSA-Problem-Solution/two_sum.md -------------------------------------------------------------------------------- /docs/extra/Divide and Conquer/Maximum-minimum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Divide and Conquer/Maximum-minimum.md -------------------------------------------------------------------------------- /docs/extra/Divide and Conquer/convex-hull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Divide and Conquer/convex-hull.md -------------------------------------------------------------------------------- /docs/extra/Fenwick Tree/FenwickTree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Fenwick Tree/FenwickTree.md -------------------------------------------------------------------------------- /docs/extra/Hashing/CollisionHandling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Hashing/CollisionHandling.md -------------------------------------------------------------------------------- /docs/extra/Hashing/OperationInsertion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Hashing/OperationInsertion.md -------------------------------------------------------------------------------- /docs/extra/Hashing/OperationSearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Hashing/OperationSearch.md -------------------------------------------------------------------------------- /docs/extra/Hashing/OperationUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Hashing/OperationUpdate.md -------------------------------------------------------------------------------- /docs/extra/Hashing/Tigerhashing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Hashing/Tigerhashing.md -------------------------------------------------------------------------------- /docs/extra/Hashing/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Hashing/_category_.json -------------------------------------------------------------------------------- /docs/extra/Hashing/deletion-in-hash-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Hashing/deletion-in-hash-table.md -------------------------------------------------------------------------------- /docs/extra/Hashing/hashsets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Hashing/hashsets.md -------------------------------------------------------------------------------- /docs/extra/Hashing/imp-of-hashing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Hashing/imp-of-hashing.md -------------------------------------------------------------------------------- /docs/extra/Hashing/what-is-hashing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Hashing/what-is-hashing.md -------------------------------------------------------------------------------- /docs/extra/Jump Search/Jump Search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Jump Search/Jump Search.md -------------------------------------------------------------------------------- /docs/extra/KMP searching pattern/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/KMP searching pattern/_category_.json -------------------------------------------------------------------------------- /docs/extra/KMP searching pattern/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/KMP searching pattern/readme.md -------------------------------------------------------------------------------- /docs/extra/Number theory/GCD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Number theory/GCD.md -------------------------------------------------------------------------------- /docs/extra/Number theory/LCM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Number theory/LCM.md -------------------------------------------------------------------------------- /docs/extra/Number theory/Modular Arithmetic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Number theory/Modular Arithmetic.md -------------------------------------------------------------------------------- /docs/extra/Number theory/counting-divisors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Number theory/counting-divisors.md -------------------------------------------------------------------------------- /docs/extra/Number theory/modular-exponentiation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Number theory/modular-exponentiation.md -------------------------------------------------------------------------------- /docs/extra/Number theory/sieve-of-eratosthenes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Number theory/sieve-of-eratosthenes.md -------------------------------------------------------------------------------- /docs/extra/Object Oriented Programming/Polymorphism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Object Oriented Programming/Polymorphism.md -------------------------------------------------------------------------------- /docs/extra/Object Oriented Programming/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Object Oriented Programming/_category_.json -------------------------------------------------------------------------------- /docs/extra/Object Oriented Programming/abstraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Object Oriented Programming/abstraction.md -------------------------------------------------------------------------------- /docs/extra/Object Oriented Programming/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Object Oriented Programming/car.png -------------------------------------------------------------------------------- /docs/extra/Object Oriented Programming/intro-to-oops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Object Oriented Programming/intro-to-oops.md -------------------------------------------------------------------------------- /docs/extra/Object Oriented Programming/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Object Oriented Programming/intro.png -------------------------------------------------------------------------------- /docs/extra/Queue/Blocked-queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/Blocked-queue.png -------------------------------------------------------------------------------- /docs/extra/Queue/Circular-queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/Circular-queue.png -------------------------------------------------------------------------------- /docs/extra/Queue/Priority-queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/Priority-queue.png -------------------------------------------------------------------------------- /docs/extra/Queue/Problem-Practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/Problem-Practice.md -------------------------------------------------------------------------------- /docs/extra/Queue/Two-Stack-Queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/Two-Stack-Queue.md -------------------------------------------------------------------------------- /docs/extra/Queue/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/_category_.json -------------------------------------------------------------------------------- /docs/extra/Queue/blocked-queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/blocked-queue.md -------------------------------------------------------------------------------- /docs/extra/Queue/check-palindrome-using-dequeue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/check-palindrome-using-dequeue.md -------------------------------------------------------------------------------- /docs/extra/Queue/circular-queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/circular-queue.md -------------------------------------------------------------------------------- /docs/extra/Queue/concurrent-queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/concurrent-queue.md -------------------------------------------------------------------------------- /docs/extra/Queue/design-circular-Dueque.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/design-circular-Dueque.md -------------------------------------------------------------------------------- /docs/extra/Queue/design-circular-Queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/design-circular-Queue.md -------------------------------------------------------------------------------- /docs/extra/Queue/double-ended-queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/double-ended-queue.md -------------------------------------------------------------------------------- /docs/extra/Queue/doubleendedqueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/doubleendedqueue.png -------------------------------------------------------------------------------- /docs/extra/Queue/priority-queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/priority-queue.md -------------------------------------------------------------------------------- /docs/extra/Queue/priority_queue_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Queue/priority_queue_questions.md -------------------------------------------------------------------------------- /docs/extra/Rabin-Karp Algorithm/Rabin-Karp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Rabin-Karp Algorithm/Rabin-Karp.md -------------------------------------------------------------------------------- /docs/extra/Randomized Algorithm/Randomized-Quicksort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Randomized Algorithm/Randomized-Quicksort.md -------------------------------------------------------------------------------- /docs/extra/Recursion-depths/Recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion-depths/Recursion.md -------------------------------------------------------------------------------- /docs/extra/Recursion-depths/advanced-topics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion-depths/advanced-topics.md -------------------------------------------------------------------------------- /docs/extra/Recursion-depths/basic-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion-depths/basic-concepts.md -------------------------------------------------------------------------------- /docs/extra/Recursion-depths/handling-depth-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion-depths/handling-depth-errors.md -------------------------------------------------------------------------------- /docs/extra/Recursion-depths/performance-consideration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion-depths/performance-consideration.md -------------------------------------------------------------------------------- /docs/extra/Recursion/Ackerman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/Ackerman.md -------------------------------------------------------------------------------- /docs/extra/Recursion/Count-all-subsequences-with-sum-K.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/Count-all-subsequences-with-sum-K.md -------------------------------------------------------------------------------- /docs/extra/Recursion/GrayCodeGeneration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/GrayCodeGeneration.md -------------------------------------------------------------------------------- /docs/extra/Recursion/Josephus-Queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/Josephus-Queries.md -------------------------------------------------------------------------------- /docs/extra/Recursion/Knight's_Tour_Problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/Knight's_Tour_Problem.md -------------------------------------------------------------------------------- /docs/extra/Recursion/N Queen 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/N Queen 2.png -------------------------------------------------------------------------------- /docs/extra/Recursion/N Qween 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/N Qween 1.png -------------------------------------------------------------------------------- /docs/extra/Recursion/Reversing_String.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/Reversing_String.md -------------------------------------------------------------------------------- /docs/extra/Recursion/SmawkAlgorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/SmawkAlgorithm.md -------------------------------------------------------------------------------- /docs/extra/Recursion/Sodoko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/Sodoko.md -------------------------------------------------------------------------------- /docs/extra/Recursion/StonePaperScissor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/StonePaperScissor.md -------------------------------------------------------------------------------- /docs/extra/Recursion/TowersOfHanoi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/TowersOfHanoi.md -------------------------------------------------------------------------------- /docs/extra/Recursion/Unwinding_in_recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/Unwinding_in_recursion.md -------------------------------------------------------------------------------- /docs/extra/Recursion/VoseAlias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/VoseAlias.md -------------------------------------------------------------------------------- /docs/extra/Recursion/WaterJug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/WaterJug.md -------------------------------------------------------------------------------- /docs/extra/Recursion/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/_category_.json -------------------------------------------------------------------------------- /docs/extra/Recursion/catalannumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/catalannumber.md -------------------------------------------------------------------------------- /docs/extra/Recursion/fibonacci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/fibonacci.md -------------------------------------------------------------------------------- /docs/extra/Recursion/generate-parantheses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/generate-parantheses.md -------------------------------------------------------------------------------- /docs/extra/Recursion/josephus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/josephus.md -------------------------------------------------------------------------------- /docs/extra/Recursion/look-and-say.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/look-and-say.md -------------------------------------------------------------------------------- /docs/extra/Recursion/n-queen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/n-queen.md -------------------------------------------------------------------------------- /docs/extra/Recursion/recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/recursion.md -------------------------------------------------------------------------------- /docs/extra/Recursion/ulamsequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Recursion/ulamsequence.md -------------------------------------------------------------------------------- /docs/extra/Segment-Trees/Dynamic Segment Trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Segment-Trees/Dynamic Segment Trees.md -------------------------------------------------------------------------------- /docs/extra/Segment-Trees/Practice Porblem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Segment-Trees/Practice Porblem.md -------------------------------------------------------------------------------- /docs/extra/Segment-Trees/Segment Trees Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Segment-Trees/Segment Trees Introduction.md -------------------------------------------------------------------------------- /docs/extra/Segment-Trees/Segment-Tree-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Segment-Trees/Segment-Tree-img.png -------------------------------------------------------------------------------- /docs/extra/Sliding-Window/IntroductionToSlidingWindow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Sliding-Window/IntroductionToSlidingWindow.jpg -------------------------------------------------------------------------------- /docs/extra/Sliding-Window/Problem-Practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Sliding-Window/Problem-Practice.md -------------------------------------------------------------------------------- /docs/extra/Sliding-Window/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Sliding-Window/_category_.json -------------------------------------------------------------------------------- /docs/extra/Sliding-Window/character-replacement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Sliding-Window/character-replacement.md -------------------------------------------------------------------------------- /docs/extra/Sliding-Window/maximum-sum-subarray-size-K.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Sliding-Window/maximum-sum-subarray-size-K.md -------------------------------------------------------------------------------- /docs/extra/Stack/Balanced-Parenthesis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/Balanced-Parenthesis.md -------------------------------------------------------------------------------- /docs/extra/Stack/Balanced-parentheses-checker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/Balanced-parentheses-checker.md -------------------------------------------------------------------------------- /docs/extra/Stack/Conversion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/Conversion.md -------------------------------------------------------------------------------- /docs/extra/Stack/Evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/Evaluation.md -------------------------------------------------------------------------------- /docs/extra/Stack/Introduction_to_Stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/Introduction_to_Stack.png -------------------------------------------------------------------------------- /docs/extra/Stack/Min-Stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/Min-Stack.md -------------------------------------------------------------------------------- /docs/extra/Stack/MonotonicStack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/MonotonicStack.md -------------------------------------------------------------------------------- /docs/extra/Stack/Next Greater Element (NGE).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/Next Greater Element (NGE).md -------------------------------------------------------------------------------- /docs/extra/Stack/Problem-Practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/Problem-Practice.md -------------------------------------------------------------------------------- /docs/extra/Stack/Reverse-Stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/Reverse-Stack.md -------------------------------------------------------------------------------- /docs/extra/Stack/Stack-permutation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/Stack-permutation.md -------------------------------------------------------------------------------- /docs/extra/Stack/Stock-span.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/Stock-span.md -------------------------------------------------------------------------------- /docs/extra/Stack/String_Reversal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/String_Reversal.md -------------------------------------------------------------------------------- /docs/extra/Stack/Trapping Rain Water Problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/Trapping Rain Water Problem.md -------------------------------------------------------------------------------- /docs/extra/Stack/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/_category_.json -------------------------------------------------------------------------------- /docs/extra/Stack/introduction-to-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/introduction-to-stack.md -------------------------------------------------------------------------------- /docs/extra/Stack/stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Stack/stack.md -------------------------------------------------------------------------------- /docs/extra/Standard Template Library/STL-algorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Standard Template Library/STL-algorithms.md -------------------------------------------------------------------------------- /docs/extra/Standard Template Library/STL-containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Standard Template Library/STL-containers.md -------------------------------------------------------------------------------- /docs/extra/Standard Template Library/STL-iterators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Standard Template Library/STL-iterators.md -------------------------------------------------------------------------------- /docs/extra/Standard Template Library/STL-theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Standard Template Library/STL-theory.md -------------------------------------------------------------------------------- /docs/extra/Strings/Problem-Practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Strings/Problem-Practice.md -------------------------------------------------------------------------------- /docs/extra/Strings/String Basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Strings/String Basics.md -------------------------------------------------------------------------------- /docs/extra/Strings/String Operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Strings/String Operation.md -------------------------------------------------------------------------------- /docs/extra/Tarjan's Algorithm/Tarjan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Tarjan's Algorithm/Tarjan.md -------------------------------------------------------------------------------- /docs/extra/Tarjan's Algorithm/algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Tarjan's Algorithm/algorithm.png -------------------------------------------------------------------------------- /docs/extra/Task Scheduling/Task-schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Task Scheduling/Task-schedule.md -------------------------------------------------------------------------------- /docs/extra/Task Scheduling/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Task Scheduling/_category_.json -------------------------------------------------------------------------------- /docs/extra/Trees/AVL Tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Trees/AVL Tree.md -------------------------------------------------------------------------------- /docs/extra/Trees/B-Trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Trees/B-Trees.md -------------------------------------------------------------------------------- /docs/extra/Trees/Expression-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Trees/Expression-tree.md -------------------------------------------------------------------------------- /docs/extra/Trees/Heap-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Trees/Heap-tree.md -------------------------------------------------------------------------------- /docs/extra/Trees/Practice Problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Trees/Practice Problems.md -------------------------------------------------------------------------------- /docs/extra/Trees/Sum-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Trees/Sum-tree.md -------------------------------------------------------------------------------- /docs/extra/Trees/Trees Practice Problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Trees/Trees Practice Problems.md -------------------------------------------------------------------------------- /docs/extra/Trees/Types of Trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Trees/Types of Trees.md -------------------------------------------------------------------------------- /docs/extra/Trees/balanced-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Trees/balanced-tree.md -------------------------------------------------------------------------------- /docs/extra/Trees/binary-search-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Trees/binary-search-tree.md -------------------------------------------------------------------------------- /docs/extra/Trees/binary-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Trees/binary-tree.md -------------------------------------------------------------------------------- /docs/extra/Trees/k-d tree algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Trees/k-d tree algorithm.md -------------------------------------------------------------------------------- /docs/extra/Trees/tree-data-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Trees/tree-data-structure.md -------------------------------------------------------------------------------- /docs/extra/Tries/Problem-Practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Tries/Problem-Practice.md -------------------------------------------------------------------------------- /docs/extra/Tries/Tries and its Implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Tries/Tries and its Implementation.md -------------------------------------------------------------------------------- /docs/extra/Tries/tries-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Tries/tries-examples.md -------------------------------------------------------------------------------- /docs/extra/Tries/tries-theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/Tries/tries-theory.md -------------------------------------------------------------------------------- /docs/extra/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/_category_.json -------------------------------------------------------------------------------- /docs/extra/advance-data-structure/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/advance-data-structure/_category_.json -------------------------------------------------------------------------------- /docs/extra/advance-data-structure/disjoint-set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/advance-data-structure/disjoint-set.md -------------------------------------------------------------------------------- /docs/extra/advance-data-structure/fenwick-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/advance-data-structure/fenwick-tree.md -------------------------------------------------------------------------------- /docs/extra/advance-data-structure/segment-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/advance-data-structure/segment-tree.md -------------------------------------------------------------------------------- /docs/extra/algorithms/Application-of-Recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Application-of-Recursion.md -------------------------------------------------------------------------------- /docs/extra/algorithms/Application-of-linked-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Application-of-linked-list.md -------------------------------------------------------------------------------- /docs/extra/algorithms/Bloom-Filter-Algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Bloom-Filter-Algorithm.md -------------------------------------------------------------------------------- /docs/extra/algorithms/CNN-deep-learning-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/CNN-deep-learning-algorithm.md -------------------------------------------------------------------------------- /docs/extra/algorithms/Computer-Vision-ML-Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Computer-Vision-ML-Theory.md -------------------------------------------------------------------------------- /docs/extra/algorithms/DLX algorithm/DLX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/DLX algorithm/DLX.md -------------------------------------------------------------------------------- /docs/extra/algorithms/Dijkstra’s Algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Dijkstra’s Algorithm.md -------------------------------------------------------------------------------- /docs/extra/algorithms/Encryption algorithms/hashing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Encryption algorithms/hashing.md -------------------------------------------------------------------------------- /docs/extra/algorithms/GAN-ML-Algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/GAN-ML-Algorithm.md -------------------------------------------------------------------------------- /docs/extra/algorithms/Hashing-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Hashing-algorithm.md -------------------------------------------------------------------------------- /docs/extra/algorithms/RNN-ML-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/RNN-ML-algorithm.md -------------------------------------------------------------------------------- /docs/extra/algorithms/SMAWK Algorithm/SMAWK Algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/SMAWK Algorithm/SMAWK Algorithm.md -------------------------------------------------------------------------------- /docs/extra/algorithms/Scheduling Algorithms/RoundRobin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Scheduling Algorithms/RoundRobin.md -------------------------------------------------------------------------------- /docs/extra/algorithms/Scheduling Algorithms/SweepLine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Scheduling Algorithms/SweepLine.md -------------------------------------------------------------------------------- /docs/extra/algorithms/Searching Algorithms/A-Search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Searching Algorithms/A-Search.md -------------------------------------------------------------------------------- /docs/extra/algorithms/Searching Algorithms/AO-Search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Searching Algorithms/AO-Search.md -------------------------------------------------------------------------------- /docs/extra/algorithms/Searching Algorithms/JumpSearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Searching Algorithms/JumpSearch.md -------------------------------------------------------------------------------- /docs/extra/algorithms/Two-Pointers/Max_Distance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Two-Pointers/Max_Distance.md -------------------------------------------------------------------------------- /docs/extra/algorithms/Two-Pointers/Problem-Practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Two-Pointers/Problem-Practice.md -------------------------------------------------------------------------------- /docs/extra/algorithms/Two-Pointers/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Two-Pointers/_category_.json -------------------------------------------------------------------------------- /docs/extra/algorithms/Two-Pointers/imp-of-two-pointers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/Two-Pointers/imp-of-two-pointers.md -------------------------------------------------------------------------------- /docs/extra/algorithms/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/_category_.json -------------------------------------------------------------------------------- /docs/extra/algorithms/greedy-algorithms/Huffman-coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/greedy-algorithms/Huffman-coding.md -------------------------------------------------------------------------------- /docs/extra/algorithms/greedy-algorithms/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/greedy-algorithms/_category_.json -------------------------------------------------------------------------------- /docs/extra/algorithms/greedy-algorithms/greedy-theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/greedy-algorithms/greedy-theory.md -------------------------------------------------------------------------------- /docs/extra/algorithms/kadane-algorithm/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/kadane-algorithm/_category_.json -------------------------------------------------------------------------------- /docs/extra/algorithms/kadane-algorithm/kadane-algo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/kadane-algorithm/kadane-algo.md -------------------------------------------------------------------------------- /docs/extra/algorithms/mathematics-algorithms/gcd-lcm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/mathematics-algorithms/gcd-lcm.md -------------------------------------------------------------------------------- /docs/extra/algorithms/modular-exponentiation-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/modular-exponentiation-algorithm.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/BitonicSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/BitonicSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/BogoSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/BogoSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/BubbleSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/BubbleSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/BucketSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/BucketSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/CombSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/CombSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/CountingSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/CountingSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/CycleSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/CycleSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/GnomeSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/GnomeSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/HeapSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/HeapSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/InsertionSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/InsertionSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/JumpSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/JumpSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/MergeSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/MergeSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/Odd-Even-Sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/Odd-Even-Sort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/OddEvenSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/OddEvenSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/Pigeonhole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/Pigeonhole.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/QuickSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/QuickSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/RadixSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/RadixSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/SelectionSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/SelectionSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/ShellSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/ShellSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/StoogeSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/StoogeSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/TimSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/TimSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/TreeSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/TreeSort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/_category_.json -------------------------------------------------------------------------------- /docs/extra/algorithms/sorting-algorithms/strand-sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/sorting-algorithms/strand-sort.md -------------------------------------------------------------------------------- /docs/extra/algorithms/string-algorithms/Naive-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/string-algorithms/Naive-search.md -------------------------------------------------------------------------------- /docs/extra/algorithms/string-algorithms/Z-Algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/string-algorithms/Z-Algorithm.md -------------------------------------------------------------------------------- /docs/extra/algorithms/string-algorithms/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/string-algorithms/_category_.json -------------------------------------------------------------------------------- /docs/extra/algorithms/string-algorithms/bndm-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/string-algorithms/bndm-algorithm.md -------------------------------------------------------------------------------- /docs/extra/algorithms/string-algorithms/kmp-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/string-algorithms/kmp-algorithm.md -------------------------------------------------------------------------------- /docs/extra/algorithms/string-algorithms/kmp-algorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/string-algorithms/kmp-algorithms.md -------------------------------------------------------------------------------- /docs/extra/algorithms/string-algorithms/lcs-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/algorithms/string-algorithms/lcs-algorithm.md -------------------------------------------------------------------------------- /docs/extra/b-tree/B-Tree-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/b-tree/B-Tree-1.md -------------------------------------------------------------------------------- /docs/extra/b-tree/B-Tree-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/b-tree/B-Tree-2.md -------------------------------------------------------------------------------- /docs/extra/b-tree/B-Tree-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/b-tree/B-Tree-3.md -------------------------------------------------------------------------------- /docs/extra/b-tree/image/BTree2Ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/b-tree/image/BTree2Ins.png -------------------------------------------------------------------------------- /docs/extra/b-tree/image/BTreeIns3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/b-tree/image/BTreeIns3.png -------------------------------------------------------------------------------- /docs/extra/b-tree/image/BTreeIns4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/b-tree/image/BTreeIns4.png -------------------------------------------------------------------------------- /docs/extra/b-tree/image/BTreeIns6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/b-tree/image/BTreeIns6.png -------------------------------------------------------------------------------- /docs/extra/b-tree/image/BTreeSplit-1024x321.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/b-tree/image/BTreeSplit-1024x321.jpg -------------------------------------------------------------------------------- /docs/extra/b-tree/image/Btree1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/b-tree/image/Btree1.png -------------------------------------------------------------------------------- /docs/extra/b-tree/image/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/b-tree/image/delete.png -------------------------------------------------------------------------------- /docs/extra/b-tree/image/delete2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/b-tree/image/delete2.png -------------------------------------------------------------------------------- /docs/extra/b-tree/image/output253.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/b-tree/image/output253.png -------------------------------------------------------------------------------- /docs/extra/b-tree/image/output254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/b-tree/image/output254.png -------------------------------------------------------------------------------- /docs/extra/b-tree/image/output255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/b-tree/image/output255.png -------------------------------------------------------------------------------- /docs/extra/b-tree/image/output256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/b-tree/image/output256.png -------------------------------------------------------------------------------- /docs/extra/backtracking algorithms/Tiling-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/backtracking algorithms/Tiling-problem.md -------------------------------------------------------------------------------- /docs/extra/balancedBinTree/balancedBinTree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/balancedBinTree/balancedBinTree.md -------------------------------------------------------------------------------- /docs/extra/balancedBinTree/balancedBinTreejava.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/balancedBinTree/balancedBinTreejava.md -------------------------------------------------------------------------------- /docs/extra/balancedBinTree/balancedBinTreejavaScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/balancedBinTree/balancedBinTreejavaScript.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/Method Overriding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/Method Overriding.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/Operator Overloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/Operator Overloading.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/Strings/Advanced-techniques.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/Strings/Advanced-techniques.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/Strings/Highest freqyuency letter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/Strings/Highest freqyuency letter.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/Strings/Isomorphic strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/Strings/Isomorphic strings.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/Strings/Reversing a string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/Strings/Reversing a string.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/Strings/What_is String.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/Strings/What_is String.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/Strings/kmp-algo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/Strings/kmp-algo.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/_category_.json -------------------------------------------------------------------------------- /docs/extra/basic-dsa/array/2d-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/array/2d-arrays.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/array/Kadane-Algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/array/Kadane-Algorithm.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/array/ProudctOfArrayExceptSelf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/array/ProudctOfArrayExceptSelf.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/array/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/array/_category_.json -------------------------------------------------------------------------------- /docs/extra/basic-dsa/array/arrays-bubblesort-dsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/array/arrays-bubblesort-dsa.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/array/arrays-dsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/array/arrays-dsa.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/array/arrays-insertionsort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/array/arrays-insertionsort.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/array/arrays-kadanesalgorithm-dsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/array/arrays-kadanesalgorithm-dsa.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/array/arrays-selectionsort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/array/arrays-selectionsort.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/array/bucket-sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/array/bucket-sort.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/array/counting-sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/array/counting-sort.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/array/heap-sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/array/heap-sort.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/array/quick-sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/array/quick-sort.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/array/radix-sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/array/radix-sort.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/matrix-data-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/matrix-data-structure.md -------------------------------------------------------------------------------- /docs/extra/basic-dsa/pointer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/basic-dsa/pointer.md -------------------------------------------------------------------------------- /docs/extra/binary-search-tree/Binary search tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search-tree/Binary search tree.md -------------------------------------------------------------------------------- /docs/extra/binary-search-tree/Post_order_traversal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search-tree/Post_order_traversal.md -------------------------------------------------------------------------------- /docs/extra/binary-search-tree/Problem-Practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search-tree/Problem-Practice.md -------------------------------------------------------------------------------- /docs/extra/binary-search-tree/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search-tree/_category_.json -------------------------------------------------------------------------------- /docs/extra/binary-search-tree/avl-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search-tree/avl-tree.md -------------------------------------------------------------------------------- /docs/extra/binary-search-tree/delete-BST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search-tree/delete-BST.md -------------------------------------------------------------------------------- /docs/extra/binary-search-tree/inorder-predecessor-BST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search-tree/inorder-predecessor-BST.md -------------------------------------------------------------------------------- /docs/extra/binary-search-tree/inorder-successor-BST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search-tree/inorder-successor-BST.md -------------------------------------------------------------------------------- /docs/extra/binary-search-tree/insert-BST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search-tree/insert-BST.md -------------------------------------------------------------------------------- /docs/extra/binary-search-tree/red-black-trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search-tree/red-black-trees.md -------------------------------------------------------------------------------- /docs/extra/binary-search-tree/search-BST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search-tree/search-BST.md -------------------------------------------------------------------------------- /docs/extra/binary-search/Exponential-Search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search/Exponential-Search.md -------------------------------------------------------------------------------- /docs/extra/binary-search/Iterative_binary_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search/Iterative_binary_search.md -------------------------------------------------------------------------------- /docs/extra/binary-search/Painter_Partition_problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search/Painter_Partition_problem.md -------------------------------------------------------------------------------- /docs/extra/binary-search/Problem-Practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search/Problem-Practice.md -------------------------------------------------------------------------------- /docs/extra/binary-search/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search/_category_.json -------------------------------------------------------------------------------- /docs/extra/binary-search/binary-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search/binary-search.md -------------------------------------------------------------------------------- /docs/extra/binary-search/binary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search/binary.md -------------------------------------------------------------------------------- /docs/extra/binary-search/binary_search_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search/binary_search_questions.md -------------------------------------------------------------------------------- /docs/extra/binary-search/matrix-binary-dsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search/matrix-binary-dsa.md -------------------------------------------------------------------------------- /docs/extra/binary-search/recursive_binary_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-search/recursive_binary_search.md -------------------------------------------------------------------------------- /docs/extra/binary-trees/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-trees/_category_.json -------------------------------------------------------------------------------- /docs/extra/binary-trees/basic-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-trees/basic-operations.md -------------------------------------------------------------------------------- /docs/extra/binary-trees/binary-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-trees/binary-tree.md -------------------------------------------------------------------------------- /docs/extra/binary-trees/expression-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-trees/expression-tree.md -------------------------------------------------------------------------------- /docs/extra/binary-trees/maximum-depth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-trees/maximum-depth.md -------------------------------------------------------------------------------- /docs/extra/binary-trees/merkle-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-trees/merkle-tree.md -------------------------------------------------------------------------------- /docs/extra/binary-trees/minimum-depth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-trees/minimum-depth.md -------------------------------------------------------------------------------- /docs/extra/binary-trees/practice-problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-trees/practice-problems.md -------------------------------------------------------------------------------- /docs/extra/binary-trees/splay-trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/binary-trees/splay-trees.md -------------------------------------------------------------------------------- /docs/extra/bit-manipulation/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/bit-manipulation/_category_.json -------------------------------------------------------------------------------- /docs/extra/bit-manipulation/bit-manipulation-technique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/bit-manipulation/bit-manipulation-technique.md -------------------------------------------------------------------------------- /docs/extra/bit-manipulation/brain-kernighan-algo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/bit-manipulation/brain-kernighan-algo.md -------------------------------------------------------------------------------- /docs/extra/bit-manipulation/clear-ith-Bit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/bit-manipulation/clear-ith-Bit.md -------------------------------------------------------------------------------- /docs/extra/bit-manipulation/count-set-bits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/bit-manipulation/count-set-bits.md -------------------------------------------------------------------------------- /docs/extra/bit-manipulation/power-of-two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/bit-manipulation/power-of-two.md -------------------------------------------------------------------------------- /docs/extra/bit-manipulation/toggle-bit-at-position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/bit-manipulation/toggle-bit-at-position.md -------------------------------------------------------------------------------- /docs/extra/challenges solutions/Challenge4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/challenges solutions/Challenge4.md -------------------------------------------------------------------------------- /docs/extra/challenges solutions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/challenges solutions/_category_.json -------------------------------------------------------------------------------- /docs/extra/challenges solutions/challenge1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/challenges solutions/challenge1.md -------------------------------------------------------------------------------- /docs/extra/challenges solutions/challenge2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/challenges solutions/challenge2.md -------------------------------------------------------------------------------- /docs/extra/challenges solutions/challenge3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/challenges solutions/challenge3.md -------------------------------------------------------------------------------- /docs/extra/combinatorics/Practice-problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/combinatorics/Practice-problems.md -------------------------------------------------------------------------------- /docs/extra/combinatorics/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/combinatorics/_category_.json -------------------------------------------------------------------------------- /docs/extra/combinatorics/combinatorics-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/combinatorics/combinatorics-examples.md -------------------------------------------------------------------------------- /docs/extra/combinatorics/combinatorics-theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/combinatorics/combinatorics-theory.md -------------------------------------------------------------------------------- /docs/extra/complexity/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/complexity/_category_.json -------------------------------------------------------------------------------- /docs/extra/complexity/how-to-calculate-complexity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/complexity/how-to-calculate-complexity.md -------------------------------------------------------------------------------- /docs/extra/complexity/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/complexity/image-1.png -------------------------------------------------------------------------------- /docs/extra/complexity/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/complexity/image.png -------------------------------------------------------------------------------- /docs/extra/complexity/space-complexity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/complexity/space-complexity.md -------------------------------------------------------------------------------- /docs/extra/complexity/time-complexity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/complexity/time-complexity.md -------------------------------------------------------------------------------- /docs/extra/complexity/time-space-complexity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/complexity/time-space-complexity.md -------------------------------------------------------------------------------- /docs/extra/dsa/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/dsa/_category_.json -------------------------------------------------------------------------------- /docs/extra/dynamic-programming/Beautiful-Subgrids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/dynamic-programming/Beautiful-Subgrids.md -------------------------------------------------------------------------------- /docs/extra/dynamic-programming/Multistage-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/dynamic-programming/Multistage-graph.md -------------------------------------------------------------------------------- /docs/extra/dynamic-programming/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/dynamic-programming/_category_.json -------------------------------------------------------------------------------- /docs/extra/dynamic-programming/approaches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/dynamic-programming/approaches.md -------------------------------------------------------------------------------- /docs/extra/dynamic-programming/fence-painting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/dynamic-programming/fence-painting.md -------------------------------------------------------------------------------- /docs/extra/dynamic-programming/house-robber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/dynamic-programming/house-robber.md -------------------------------------------------------------------------------- /docs/extra/dynamic-programming/how-to-identify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/dynamic-programming/how-to-identify.md -------------------------------------------------------------------------------- /docs/extra/dynamic-programming/trapped-rainwater.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/dynamic-programming/trapped-rainwater.md -------------------------------------------------------------------------------- /docs/extra/fundamentals/Conditional Statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/fundamentals/Conditional Statement.md -------------------------------------------------------------------------------- /docs/extra/fundamentals/Functions/Function Call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/fundamentals/Functions/Function Call.md -------------------------------------------------------------------------------- /docs/extra/fundamentals/Functions/Function Closures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/fundamentals/Functions/Function Closures.md -------------------------------------------------------------------------------- /docs/extra/fundamentals/Functions/Function Composition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/fundamentals/Functions/Function Composition.md -------------------------------------------------------------------------------- /docs/extra/fundamentals/Functions/Function Currying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/fundamentals/Functions/Function Currying.md -------------------------------------------------------------------------------- /docs/extra/fundamentals/Functions/Function Declaration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/fundamentals/Functions/Function Declaration.md -------------------------------------------------------------------------------- /docs/extra/fundamentals/Functions/Function Memoization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/fundamentals/Functions/Function Memoization.md -------------------------------------------------------------------------------- /docs/extra/fundamentals/Functions/Function Overloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/fundamentals/Functions/Function Overloading.md -------------------------------------------------------------------------------- /docs/extra/fundamentals/Functions/Function Parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/fundamentals/Functions/Function Parameters.md -------------------------------------------------------------------------------- /docs/extra/fundamentals/Functions/Function Recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/fundamentals/Functions/Function Recursion.md -------------------------------------------------------------------------------- /docs/extra/fundamentals/Functions/Function Return.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/fundamentals/Functions/Function Return.md -------------------------------------------------------------------------------- /docs/extra/fundamentals/Functions/Function Scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/fundamentals/Functions/Function Scope.md -------------------------------------------------------------------------------- /docs/extra/fundamentals/Loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/fundamentals/Loops.md -------------------------------------------------------------------------------- /docs/extra/game-Theory/gameTheory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/game-Theory/gameTheory.md -------------------------------------------------------------------------------- /docs/extra/game-Theory/gameTheoryExamples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/game-Theory/gameTheoryExamples.md -------------------------------------------------------------------------------- /docs/extra/graphs/Adjacency-List.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/Adjacency-List.md -------------------------------------------------------------------------------- /docs/extra/graphs/Adjacency-Matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/Adjacency-Matrix.md -------------------------------------------------------------------------------- /docs/extra/graphs/Disjoint Set Union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/Disjoint Set Union.md -------------------------------------------------------------------------------- /docs/extra/graphs/Johnson's-algo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/Johnson's-algo.md -------------------------------------------------------------------------------- /docs/extra/graphs/Longest-path-in-DAG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/Longest-path-in-DAG.md -------------------------------------------------------------------------------- /docs/extra/graphs/Page-Rank-Algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/Page-Rank-Algorithm.md -------------------------------------------------------------------------------- /docs/extra/graphs/Practice Problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/Practice Problems.md -------------------------------------------------------------------------------- /docs/extra/graphs/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/_category_.json -------------------------------------------------------------------------------- /docs/extra/graphs/ant-colony-optimization-tsp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/ant-colony-optimization-tsp.md -------------------------------------------------------------------------------- /docs/extra/graphs/bfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/bfs.md -------------------------------------------------------------------------------- /docs/extra/graphs/bipartite-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/bipartite-graph.md -------------------------------------------------------------------------------- /docs/extra/graphs/dfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/dfs.md -------------------------------------------------------------------------------- /docs/extra/graphs/dfs_java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/dfs_java.md -------------------------------------------------------------------------------- /docs/extra/graphs/dijkstra-algo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/dijkstra-algo.md -------------------------------------------------------------------------------- /docs/extra/graphs/eulerian-graphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/eulerian-graphs.md -------------------------------------------------------------------------------- /docs/extra/graphs/flood-fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/flood-fill.md -------------------------------------------------------------------------------- /docs/extra/graphs/floyd-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/floyd-algorithm.md -------------------------------------------------------------------------------- /docs/extra/graphs/graph-cloning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/graph-cloning.md -------------------------------------------------------------------------------- /docs/extra/graphs/graph-coloring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/graph-coloring.md -------------------------------------------------------------------------------- /docs/extra/graphs/graph-reversal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/graph-reversal.md -------------------------------------------------------------------------------- /docs/extra/graphs/hopcroft-karp-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/hopcroft-karp-algorithm.md -------------------------------------------------------------------------------- /docs/extra/graphs/kahn-algo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/kahn-algo.md -------------------------------------------------------------------------------- /docs/extra/graphs/kosaraju-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/kosaraju-algorithm.md -------------------------------------------------------------------------------- /docs/extra/graphs/kruskal-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/kruskal-algorithm.md -------------------------------------------------------------------------------- /docs/extra/graphs/minimum-cost-spanning-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/minimum-cost-spanning-tree.md -------------------------------------------------------------------------------- /docs/extra/graphs/practice-problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/practice-problems.md -------------------------------------------------------------------------------- /docs/extra/graphs/prims-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/prims-algorithm.md -------------------------------------------------------------------------------- /docs/extra/graphs/tarjans-algo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/tarjans-algo.md -------------------------------------------------------------------------------- /docs/extra/graphs/warshall-algo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/graphs/warshall-algo.md -------------------------------------------------------------------------------- /docs/extra/greedy-algorithms/Graph-Coloring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/greedy-algorithms/Graph-Coloring.md -------------------------------------------------------------------------------- /docs/extra/greedy-algorithms/job-scheduling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/greedy-algorithms/job-scheduling.md -------------------------------------------------------------------------------- /docs/extra/greedy-algorithms/kruskals-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/greedy-algorithms/kruskals-algorithm.md -------------------------------------------------------------------------------- /docs/extra/greedy-algorithms/prims-algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/greedy-algorithms/prims-algorithm.md -------------------------------------------------------------------------------- /docs/extra/hash/Practice Problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/hash/Practice Problems.md -------------------------------------------------------------------------------- /docs/extra/hash/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/hash/_category_.json -------------------------------------------------------------------------------- /docs/extra/hash/hash-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/hash/hash-tables.md -------------------------------------------------------------------------------- /docs/extra/heap/Add-Merge-k-sorted-lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/heap/Add-Merge-k-sorted-lists.md -------------------------------------------------------------------------------- /docs/extra/heap/Kth-largest-using-min_heap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/heap/Kth-largest-using-min_heap.md -------------------------------------------------------------------------------- /docs/extra/heap/Median-of-a-stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/heap/Median-of-a-stream.md -------------------------------------------------------------------------------- /docs/extra/heap/Problem-Practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/heap/Problem-Practice.md -------------------------------------------------------------------------------- /docs/extra/heap/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/heap/_category_.json -------------------------------------------------------------------------------- /docs/extra/heap/heap-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/heap/heap-basics.md -------------------------------------------------------------------------------- /docs/extra/heap/heap-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/heap/heap-operations.md -------------------------------------------------------------------------------- /docs/extra/heap/kth-largest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/heap/kth-largest.md -------------------------------------------------------------------------------- /docs/extra/heap/kth-smallest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/heap/kth-smallest.md -------------------------------------------------------------------------------- /docs/extra/heap/time-complexity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/heap/time-complexity.md -------------------------------------------------------------------------------- /docs/extra/heap/top-k-frequent-elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/heap/top-k-frequent-elements.md -------------------------------------------------------------------------------- /docs/extra/linked-list/CircularDoubly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/CircularDoubly.png -------------------------------------------------------------------------------- /docs/extra/linked-list/CircularLinkedList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/CircularLinkedList.png -------------------------------------------------------------------------------- /docs/extra/linked-list/Doubly-linked-list-C.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/Doubly-linked-list-C.md -------------------------------------------------------------------------------- /docs/extra/linked-list/DoublyLL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/DoublyLL.png -------------------------------------------------------------------------------- /docs/extra/linked-list/Hare-Tortoise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/Hare-Tortoise.md -------------------------------------------------------------------------------- /docs/extra/linked-list/Intersection_Linked_list_python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/Intersection_Linked_list_python.md -------------------------------------------------------------------------------- /docs/extra/linked-list/LinkedList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/LinkedList.png -------------------------------------------------------------------------------- /docs/extra/linked-list/Polynomial-Addition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/Polynomial-Addition.md -------------------------------------------------------------------------------- /docs/extra/linked-list/Polynomial_multiplication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/Polynomial_multiplication.md -------------------------------------------------------------------------------- /docs/extra/linked-list/Practice-Problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/Practice-Problems.md -------------------------------------------------------------------------------- /docs/extra/linked-list/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/_category_.json -------------------------------------------------------------------------------- /docs/extra/linked-list/circular-doubly-linked-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/circular-doubly-linked-list.md -------------------------------------------------------------------------------- /docs/extra/linked-list/doubly-linked-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/doubly-linked-list.md -------------------------------------------------------------------------------- /docs/extra/linked-list/floyds-cycle-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/floyds-cycle-detection.md -------------------------------------------------------------------------------- /docs/extra/linked-list/gircular-linked-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/gircular-linked-list.md -------------------------------------------------------------------------------- /docs/extra/linked-list/intersection-linked-lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/intersection-linked-lists.md -------------------------------------------------------------------------------- /docs/extra/linked-list/introduction-to-linked-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/introduction-to-linked-list.md -------------------------------------------------------------------------------- /docs/extra/linked-list/linked-list-approaches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/linked-list-approaches.md -------------------------------------------------------------------------------- /docs/extra/linked-list/max-twin-sum-of-linked-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/max-twin-sum-of-linked-list.md -------------------------------------------------------------------------------- /docs/extra/linked-list/merge-two-sorted-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/merge-two-sorted-list.md -------------------------------------------------------------------------------- /docs/extra/linked-list/polynomial-representation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/polynomial-representation.md -------------------------------------------------------------------------------- /docs/extra/linked-list/range-sum-of-linked-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/linked-list/range-sum-of-linked-list.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/AdaBoost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/AdaBoost.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/Autoencoders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/Autoencoders.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/BeamSearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/BeamSearch.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/Catboost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/Catboost.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/Extra_Trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/Extra_Trees.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/GBM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/GBM.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/Gaussian_Mixture_Model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/Gaussian_Mixture_Model.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/HBOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/HBOS.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/Hidden_Markov_Model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/Hidden_Markov_Model.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/HierarchialClustering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/HierarchialClustering.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/K-Means_clustering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/K-Means_clustering.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/K-NearestNeighbours.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/K-NearestNeighbours.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/LinearRegression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/LinearRegression.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/LogisticRegression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/LogisticRegression.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/Long_Short_Term_Memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/Long_Short_Term_Memory.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/PC_Visualizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/PC_Visualizations.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/Recurrent_Neural_Network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/Recurrent_Neural_Network.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/Reinforcement_Learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/Reinforcement_Learning.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/RidgeRegression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/RidgeRegression.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/SDG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/SDG.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/SVM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/SVM.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/Silhoutte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/Silhoutte.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/XGBoost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/XGBoost.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/decisionTree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/decisionTree.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/deep-q-networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/deep-q-networks.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/lasso_regression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/lasso_regression.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/naive-bayes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/naive-bayes.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/neuralNetworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/neuralNetworks.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/qLearning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/qLearning.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/random-forest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/random-forest.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/regression_algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/regression_algorithm.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/supervised_learning_algo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/supervised_learning_algo.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/support-vector-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/support-vector-machine.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/tsne-visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/tsne-visualization.md -------------------------------------------------------------------------------- /docs/extra/machine-learning/unsupervised_learning_algo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/machine-learning/unsupervised_learning_algo.md -------------------------------------------------------------------------------- /docs/extra/sortings/Sortings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/sortings/Sortings.md -------------------------------------------------------------------------------- /docs/extra/sortings/shell-sort .md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/extra/sortings/shell-sort .md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/languages/C/c-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/C/c-0.md -------------------------------------------------------------------------------- /docs/languages/C/c-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/C/c-1.md -------------------------------------------------------------------------------- /docs/languages/C/c-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/C/c-2.md -------------------------------------------------------------------------------- /docs/languages/C/c-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/C/c-3.md -------------------------------------------------------------------------------- /docs/languages/C/c-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/C/c-4.md -------------------------------------------------------------------------------- /docs/languages/C/c-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/C/c-5.md -------------------------------------------------------------------------------- /docs/languages/C/c-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/C/c-6.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-1.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-10.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-11.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-12.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-13.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-14.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-15.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-16.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-17.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-18.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-19.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-2.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-20.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-21.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-22.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-23.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-24.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-25.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-26.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-27.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-28.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-29.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-3.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-30.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-31.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-32.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-33.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-4.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-5.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-6.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-7.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-8.md -------------------------------------------------------------------------------- /docs/languages/SQL/sql-9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/SQL/sql-9.md -------------------------------------------------------------------------------- /docs/languages/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/_category_.json -------------------------------------------------------------------------------- /docs/languages/cpp/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/cpp/_category_.json -------------------------------------------------------------------------------- /docs/languages/cpp/cp-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/cpp/cp-0.md -------------------------------------------------------------------------------- /docs/languages/cpp/cp-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/cpp/cp-1.md -------------------------------------------------------------------------------- /docs/languages/cpp/cp-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/cpp/cp-10.md -------------------------------------------------------------------------------- /docs/languages/cpp/cp-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/cpp/cp-11.md -------------------------------------------------------------------------------- /docs/languages/cpp/cp-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/cpp/cp-12.md -------------------------------------------------------------------------------- /docs/languages/cpp/cp-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/cpp/cp-13.md -------------------------------------------------------------------------------- /docs/languages/cpp/cp-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/cpp/cp-2.md -------------------------------------------------------------------------------- /docs/languages/cpp/cp-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/cpp/cp-3.md -------------------------------------------------------------------------------- /docs/languages/cpp/cp-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/cpp/cp-4.md -------------------------------------------------------------------------------- /docs/languages/cpp/cp-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/cpp/cp-5.md -------------------------------------------------------------------------------- /docs/languages/cpp/cp-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/cpp/cp-6.md -------------------------------------------------------------------------------- /docs/languages/cpp/cp-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/cpp/cp-7.md -------------------------------------------------------------------------------- /docs/languages/cpp/cp-8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/cpp/cp-8.md -------------------------------------------------------------------------------- /docs/languages/cpp/cp-9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/cpp/cp-9.md -------------------------------------------------------------------------------- /docs/languages/csharp/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/csharp/_category_.json -------------------------------------------------------------------------------- /docs/languages/csharp/csharp-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/csharp/csharp-0.md -------------------------------------------------------------------------------- /docs/languages/csharp/csharp-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/csharp/csharp-1.md -------------------------------------------------------------------------------- /docs/languages/csharp/csharp-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/csharp/csharp-2.md -------------------------------------------------------------------------------- /docs/languages/csharp/csharp-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/csharp/csharp-3.md -------------------------------------------------------------------------------- /docs/languages/csharp/csharp-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/csharp/csharp-4.md -------------------------------------------------------------------------------- /docs/languages/csharp/csharp-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/csharp/csharp-5.md -------------------------------------------------------------------------------- /docs/languages/csharp/csharp-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/csharp/csharp-6.md -------------------------------------------------------------------------------- /docs/languages/csharp/csharp-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/csharp/csharp-7.md -------------------------------------------------------------------------------- /docs/languages/csharp/csharp-8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/csharp/csharp-8.md -------------------------------------------------------------------------------- /docs/languages/csharp/csharp-9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/csharp/csharp-9.md -------------------------------------------------------------------------------- /docs/languages/java/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/_category_.json -------------------------------------------------------------------------------- /docs/languages/java/ex1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/ex1.md -------------------------------------------------------------------------------- /docs/languages/java/ex2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/ex2.md -------------------------------------------------------------------------------- /docs/languages/java/ex4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/ex4.md -------------------------------------------------------------------------------- /docs/languages/java/java-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/java-1.md -------------------------------------------------------------------------------- /docs/languages/java/java-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/java-10.md -------------------------------------------------------------------------------- /docs/languages/java/java-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/java-11.md -------------------------------------------------------------------------------- /docs/languages/java/java-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/java-12.md -------------------------------------------------------------------------------- /docs/languages/java/java-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/java-2.md -------------------------------------------------------------------------------- /docs/languages/java/java-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/java-3.md -------------------------------------------------------------------------------- /docs/languages/java/java-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/java-4.md -------------------------------------------------------------------------------- /docs/languages/java/java-5-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/java-5-1.md -------------------------------------------------------------------------------- /docs/languages/java/java-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/java-6.md -------------------------------------------------------------------------------- /docs/languages/java/java-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/java-7.md -------------------------------------------------------------------------------- /docs/languages/java/java-8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/java-8.md -------------------------------------------------------------------------------- /docs/languages/java/java-9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/java/java-9.md -------------------------------------------------------------------------------- /docs/languages/javascript/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/_category_.json -------------------------------------------------------------------------------- /docs/languages/javascript/js-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-0.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-1.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-10.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-11.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-12.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-13.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-14.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-15.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-16.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-17.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-2.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-3.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-4.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-5.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-6.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-7.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-8.md -------------------------------------------------------------------------------- /docs/languages/javascript/js-9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/javascript/js-9.md -------------------------------------------------------------------------------- /docs/languages/python/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/_category_.json -------------------------------------------------------------------------------- /docs/languages/python/py-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-1.md -------------------------------------------------------------------------------- /docs/languages/python/py-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-10.md -------------------------------------------------------------------------------- /docs/languages/python/py-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-11.md -------------------------------------------------------------------------------- /docs/languages/python/py-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-12.md -------------------------------------------------------------------------------- /docs/languages/python/py-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-13.md -------------------------------------------------------------------------------- /docs/languages/python/py-14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-14.md -------------------------------------------------------------------------------- /docs/languages/python/py-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-15.md -------------------------------------------------------------------------------- /docs/languages/python/py-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-16.md -------------------------------------------------------------------------------- /docs/languages/python/py-17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-17.md -------------------------------------------------------------------------------- /docs/languages/python/py-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-18.md -------------------------------------------------------------------------------- /docs/languages/python/py-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-2.md -------------------------------------------------------------------------------- /docs/languages/python/py-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-3.md -------------------------------------------------------------------------------- /docs/languages/python/py-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-4.md -------------------------------------------------------------------------------- /docs/languages/python/py-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-5.md -------------------------------------------------------------------------------- /docs/languages/python/py-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-6.md -------------------------------------------------------------------------------- /docs/languages/python/py-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-7.md -------------------------------------------------------------------------------- /docs/languages/python/py-8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-8.md -------------------------------------------------------------------------------- /docs/languages/python/py-9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/languages/python/py-9.md -------------------------------------------------------------------------------- /docs/programming-fundamentals/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/programming-fundamentals/_category_.json -------------------------------------------------------------------------------- /docs/programming-fundamentals/control-structures/break.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/control-structures/continue.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/control-structures/do-while-loop.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/control-structures/finally.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/control-structures/return.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/control-structures/throw.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/control-structures/try-catch.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/control-structures/while-loop.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/functions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/programming-fundamentals/functions/_category_.json -------------------------------------------------------------------------------- /docs/programming-fundamentals/functions/function-call.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/functions/function-closures.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/functions/function-composition.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/functions/function-currying.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/functions/function-declaration.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/functions/function-memoization.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/functions/function-overloading.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/functions/function-parameters.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/functions/function-recursion.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/functions/function-return.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/functions/function-scope.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/language-syntax/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/programming-fundamentals/language-syntax/arrays.md -------------------------------------------------------------------------------- /docs/programming-fundamentals/language-syntax/classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/programming-fundamentals/language-syntax/classes.md -------------------------------------------------------------------------------- /docs/programming-fundamentals/language-syntax/interfaces.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/language-syntax/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/programming-fundamentals/language-syntax/loops.md -------------------------------------------------------------------------------- /docs/programming-fundamentals/language-syntax/objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/programming-fundamentals/language-syntax/objects.md -------------------------------------------------------------------------------- /docs/programming-fundamentals/language-syntax/polymorphism.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/language-syntax/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/programming-fundamentals/language-syntax/strings.md -------------------------------------------------------------------------------- /docs/programming-fundamentals/oop-basics/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docs/programming-fundamentals/oop-basics/_category_.json -------------------------------------------------------------------------------- /docs/programming-fundamentals/oop-basics/abstract-classes.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/oop-basics/abstraction.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/oop-basics/classes.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/oop-basics/composition.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/oop-basics/delegation.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/oop-basics/encapsulation.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/oop-basics/inheritance.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/oop-basics/interfaces.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/oop-basics/mixins.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/oop-basics/objects.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/oop-basics/polymorphism.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/pseudo-code/Introduction.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/pseudo-code/arrays.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/pseudo-code/classes.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/pseudo-code/conditionals.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/pseudo-code/functions.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/pseudo-code/inheritance.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/pseudo-code/loops.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/pseudo-code/objects.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/pseudo-code/operators.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/pseudo-code/polymorphism.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/pseudo-code/strings.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/programming-fundamentals/pseudo-code/variables.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /dsa-interview-sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/dsa-interview-sidebars.js -------------------------------------------------------------------------------- /dsa-interview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/dsa-interview/index.md -------------------------------------------------------------------------------- /festhack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/festhack.jpg -------------------------------------------------------------------------------- /girlscript.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/girlscript.jpg -------------------------------------------------------------------------------- /learn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/learn.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/package.json -------------------------------------------------------------------------------- /plugins/my-plugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/plugins/my-plugin/index.js -------------------------------------------------------------------------------- /postman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/postman.png -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/renovate.json -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/sidebars.js -------------------------------------------------------------------------------- /src/components/AdsComponent/Ads.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/AdsComponent/Ads.tsx -------------------------------------------------------------------------------- /src/components/AdsComponent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/AdsComponent/index.tsx -------------------------------------------------------------------------------- /src/components/AdsComponent/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/ChallengeCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/ChallengeCard.tsx -------------------------------------------------------------------------------- /src/components/DSA/DP/Parsing A Boolean Expression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/DSA/DP/Parsing A Boolean Expression.md -------------------------------------------------------------------------------- /src/components/DSA/arrays/ArrayVisualizations/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/DSA/arrays/ArrayVisualizations/index.tsx -------------------------------------------------------------------------------- /src/components/DSA/arrays/HeapSortVisualization/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/DSA/arrays/HeapSortVisualization/index.tsx -------------------------------------------------------------------------------- /src/components/DSA/arrays/HeapSortVisualization/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/DSA/arrays/HeapSortVisualization/style.css -------------------------------------------------------------------------------- /src/components/GiscusComponent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/GiscusComponent/index.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Highlight/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/Highlight/index.js -------------------------------------------------------------------------------- /src/components/Homepage/CallToActionSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/Homepage/CallToActionSection.tsx -------------------------------------------------------------------------------- /src/components/Homepage/ContributeSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/Homepage/ContributeSection.tsx -------------------------------------------------------------------------------- /src/components/Homepage/FeaturesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/Homepage/FeaturesSection.tsx -------------------------------------------------------------------------------- /src/components/Homepage/GetInvolvedSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/Homepage/GetInvolvedSection.tsx -------------------------------------------------------------------------------- /src/components/Homepage/HeroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/Homepage/HeroSection.tsx -------------------------------------------------------------------------------- /src/components/Homepage/HowItWorksSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/Homepage/HowItWorksSection.tsx -------------------------------------------------------------------------------- /src/components/Homepage/PopularAlgorithmsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/Homepage/PopularAlgorithmsSection.tsx -------------------------------------------------------------------------------- /src/components/Homepage/TechnologiesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/Homepage/TechnologiesSection.tsx -------------------------------------------------------------------------------- /src/components/Homepage/UserTestimonialsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/Homepage/UserTestimonialsSection.tsx -------------------------------------------------------------------------------- /src/components/Homepage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/Homepage/index.tsx -------------------------------------------------------------------------------- /src/components/QuizCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/QuizCard.tsx -------------------------------------------------------------------------------- /src/components/Scroller/BottomToTop/BottomToTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/Scroller/BottomToTop/BottomToTop.tsx -------------------------------------------------------------------------------- /src/components/Scroller/TopToBottom/TopToBottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/Scroller/TopToBottom/TopToBottom.tsx -------------------------------------------------------------------------------- /src/components/Visualizing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/Visualizing/index.tsx -------------------------------------------------------------------------------- /src/components/chatbot.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/components/chatbot.jsx -------------------------------------------------------------------------------- /src/css/BottomToTop.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/css/BottomToTop.module.css -------------------------------------------------------------------------------- /src/css/TopToBottom.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/css/TopToBottom.module.css -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/css/visualiezer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/css/visualiezer.css -------------------------------------------------------------------------------- /src/data/challengeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/data/challengeData.ts -------------------------------------------------------------------------------- /src/data/quizData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/data/quizData.ts -------------------------------------------------------------------------------- /src/data/testimonialsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/data/testimonialsData.ts -------------------------------------------------------------------------------- /src/data/topics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/data/topics.ts -------------------------------------------------------------------------------- /src/pages/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/License.md -------------------------------------------------------------------------------- /src/pages/about/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/about/index.tsx -------------------------------------------------------------------------------- /src/pages/blogs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/blogs/index.tsx -------------------------------------------------------------------------------- /src/pages/challenges/challenge1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/challenges/challenge1.tsx -------------------------------------------------------------------------------- /src/pages/challenges/challenge2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/challenges/challenge2.tsx -------------------------------------------------------------------------------- /src/pages/challenges/challenge3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/challenges/challenge3.tsx -------------------------------------------------------------------------------- /src/pages/challenges/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/challenges/index.tsx -------------------------------------------------------------------------------- /src/pages/community/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/community/index.tsx -------------------------------------------------------------------------------- /src/pages/contact/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/contact/index.tsx -------------------------------------------------------------------------------- /src/pages/contributors/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/contributors/index.tsx -------------------------------------------------------------------------------- /src/pages/dsa-roadmap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/dsa-roadmap/index.tsx -------------------------------------------------------------------------------- /src/pages/faq/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/faq/index.tsx -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/leaderboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/leaderboard/index.tsx -------------------------------------------------------------------------------- /src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/markdown-page.md -------------------------------------------------------------------------------- /src/pages/practice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/practice/index.tsx -------------------------------------------------------------------------------- /src/pages/quiz-solutions/array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quiz-solutions/array.md -------------------------------------------------------------------------------- /src/pages/quiz-solutions/b-trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quiz-solutions/b-trees.md -------------------------------------------------------------------------------- /src/pages/quiz-solutions/binary-search-trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quiz-solutions/binary-search-trees.md -------------------------------------------------------------------------------- /src/pages/quiz-solutions/binary-trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quiz-solutions/binary-trees.md -------------------------------------------------------------------------------- /src/pages/quiz-solutions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quiz-solutions/index.tsx -------------------------------------------------------------------------------- /src/pages/quiz-solutions/queues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quiz-solutions/queues.md -------------------------------------------------------------------------------- /src/pages/quiz-solutions/red-black-trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quiz-solutions/red-black-trees.md -------------------------------------------------------------------------------- /src/pages/quiz-solutions/stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quiz-solutions/stack.md -------------------------------------------------------------------------------- /src/pages/quizes/arrays.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quizes/arrays.tsx -------------------------------------------------------------------------------- /src/pages/quizes/b-tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quizes/b-tree.tsx -------------------------------------------------------------------------------- /src/pages/quizes/binary-search-tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quizes/binary-search-tree.tsx -------------------------------------------------------------------------------- /src/pages/quizes/binary-tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quizes/binary-tree.tsx -------------------------------------------------------------------------------- /src/pages/quizes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quizes/index.tsx -------------------------------------------------------------------------------- /src/pages/quizes/queue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quizes/queue.tsx -------------------------------------------------------------------------------- /src/pages/quizes/queues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quizes/queues.tsx -------------------------------------------------------------------------------- /src/pages/quizes/red-black-tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quizes/red-black-tree.tsx -------------------------------------------------------------------------------- /src/pages/quizes/stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/quizes/stack.tsx -------------------------------------------------------------------------------- /src/pages/resources/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/resources/index.tsx -------------------------------------------------------------------------------- /src/pages/roadmap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/roadmap/index.tsx -------------------------------------------------------------------------------- /src/pages/terms/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/pages/terms/index.tsx -------------------------------------------------------------------------------- /src/theme/Admonition/Icon/Danger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/theme/Admonition/Icon/Danger.js -------------------------------------------------------------------------------- /src/theme/Admonition/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/theme/Admonition/Layout/index.js -------------------------------------------------------------------------------- /src/theme/CodeBlock/Line/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/theme/CodeBlock/Line/index.js -------------------------------------------------------------------------------- /src/theme/CodeBlock/Line/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/theme/CodeBlock/Line/styles.module.css -------------------------------------------------------------------------------- /src/theme/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/theme/Footer/index.tsx -------------------------------------------------------------------------------- /src/theme/MDXComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/theme/MDXComponents.js -------------------------------------------------------------------------------- /src/theme/Mermaid/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/theme/Mermaid/index.js -------------------------------------------------------------------------------- /src/theme/ReactLiveScope/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/theme/ReactLiveScope/components.js -------------------------------------------------------------------------------- /src/theme/ReactLiveScope/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/theme/ReactLiveScope/index.js -------------------------------------------------------------------------------- /src/theme/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/src/theme/Root.js -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-5832817025080991, DIRECT, f08c47fec0942fa0 2 | -------------------------------------------------------------------------------- /static/banner/banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/banner/banner-1.jpg -------------------------------------------------------------------------------- /static/banner/banner-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/banner/banner-1.png -------------------------------------------------------------------------------- /static/banner/banner-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/banner/banner-10.jpg -------------------------------------------------------------------------------- /static/banner/banner-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/banner/banner-13.jpg -------------------------------------------------------------------------------- /static/banner/banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/banner/banner-2.jpg -------------------------------------------------------------------------------- /static/banner/banner-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/banner/banner-3.jpg -------------------------------------------------------------------------------- /static/banner/banner-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/banner/banner-4.jpg -------------------------------------------------------------------------------- /static/images/avatar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/avatar-2.jpg -------------------------------------------------------------------------------- /static/images/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/avatar1.jpg -------------------------------------------------------------------------------- /static/images/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/avatar2.jpg -------------------------------------------------------------------------------- /static/images/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/avatar3.jpg -------------------------------------------------------------------------------- /static/images/docusaurus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/docusaurus.svg -------------------------------------------------------------------------------- /static/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/github.svg -------------------------------------------------------------------------------- /static/images/jsx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/jsx.svg -------------------------------------------------------------------------------- /static/images/mission.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/mission.jpg -------------------------------------------------------------------------------- /static/images/node-js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/node-js.svg -------------------------------------------------------------------------------- /static/images/tailwindcss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/tailwindcss.svg -------------------------------------------------------------------------------- /static/images/team-member-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/team-member-1.jpg -------------------------------------------------------------------------------- /static/images/team-member-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/team-member-2.jpg -------------------------------------------------------------------------------- /static/images/team-member-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/team-member-3.jpg -------------------------------------------------------------------------------- /static/images/team-member-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/team-member-4.jpg -------------------------------------------------------------------------------- /static/images/team-member-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/team-member-5.jpg -------------------------------------------------------------------------------- /static/images/tsx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/images/tsx.svg -------------------------------------------------------------------------------- /static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/img/docusaurus.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /static/landing/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/landing/calendar.svg -------------------------------------------------------------------------------- /static/landing/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/landing/chat.svg -------------------------------------------------------------------------------- /static/landing/customer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/landing/customer.svg -------------------------------------------------------------------------------- /static/landing/grid-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/landing/grid-dark.svg -------------------------------------------------------------------------------- /static/landing/grid-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/landing/grid-light.svg -------------------------------------------------------------------------------- /static/logo/algo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/logo/algo-1.png -------------------------------------------------------------------------------- /static/logo/algo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/logo/algo-3.png -------------------------------------------------------------------------------- /static/logo/algo-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/logo/algo-banner.png -------------------------------------------------------------------------------- /static/logo/algo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/logo/algo.png -------------------------------------------------------------------------------- /static/logo/dsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/logo/dsa.png -------------------------------------------------------------------------------- /static/logo/ft-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/logo/ft-copy.png -------------------------------------------------------------------------------- /static/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/logo/logo.png -------------------------------------------------------------------------------- /static/logo/neural.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/static/logo/neural.png -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajay-dhangar/algo/HEAD/tailwind.config.js --------------------------------------------------------------------------------