├── 0001-two-sum ├── 0001-two-sum.cpp ├── 0001-two-sum.java └── README.md ├── 0003-longest-substring-without-repeating-characters ├── 0003-longest-substring-without-repeating-characters.java └── README.md ├── 0015-3sum ├── 0015-3sum.cpp ├── 0015-3sum.java └── README.md ├── 0019-remove-nth-node-from-end-of-list ├── 0019-remove-nth-node-from-end-of-list.cpp ├── 0019-remove-nth-node-from-end-of-list.java └── README.md ├── 0021-merge-two-sorted-lists ├── 0021-merge-two-sorted-lists.cpp ├── 0021-merge-two-sorted-lists.java └── README.md ├── 0023-merge-k-sorted-lists ├── 0023-merge-k-sorted-lists.cpp ├── 0023-merge-k-sorted-lists.java └── README.md ├── 0031-next-permutation ├── 0031-next-permutation.java └── README.md ├── 0033-search-in-rotated-sorted-array ├── 0033-search-in-rotated-sorted-array.java └── README.md ├── 0048-rotate-image ├── 0048-rotate-image.java └── README.md ├── 0049-group-anagrams ├── 0049-group-anagrams.java └── README.md ├── 0054-spiral-matrix ├── 0054-spiral-matrix.java └── README.md ├── 0131-palindrome-partitioning ├── 0131-palindrome-partitioning.java └── README.md ├── 0169-majority-element ├── 0169-majority-element.java └── README.md ├── 0239-sliding-window-maximum ├── 0239-sliding-window-maximum.java ├── NOTES.md └── README.md ├── 0394-decode-string ├── 0394-decode-string.java └── README.md ├── 0692-top-k-frequent-words ├── 0692-top-k-frequent-words.java ├── NOTES.md └── README.md ├── 1-two-sum ├── 1-two-sum.java ├── NOTES.md └── README.md ├── 1000. Minimum Cost to Merge Stones ├── 1000. Minimum Cost to Merge Stones.java └── Readme.md ├── 1008-construct-binary-search-tree-from-preorder-traversal ├── 1008-construct-binary-search-tree-from-preorder-traversal.java ├── NOTES.md └── README.md ├── 1011-capacity-to-ship-packages-within-d-days ├── 1011-capacity-to-ship-packages-within-d-days.java ├── NOTES.md └── README.md ├── 102-binary-tree-level-order-traversal ├── 102-binary-tree-level-order-traversal.java ├── NOTES.md └── README.md ├── 103-binary-tree-zigzag-level-order-traversal ├── 103-binary-tree-zigzag-level-order-traversal.java ├── NOTES.md └── README.md ├── 1038. Binary Search Tree to Greater Sum Tree ├── 1038. Binary Search Tree to Greater Sum Tree.java ├── BST to greater sum tree.cpp ├── BST to greater sum tree.java └── Readme.md ├── 1092. Shortest Common Supersequence -Leetcode ├── 1092. Shortest Common Supersequence.java └── Shortest Common Supersequence-GFG.java ├── 112-path-sum ├── 112-path-sum.java ├── NOTES.md └── README.md ├── 113-path-sum-ii ├── 113-path-sum-ii.java ├── NOTES.md └── README.md ├── 1143. Longest Common Subsequence Leetcode └── 1143. Longest Common Subsequence.java ├── 121-best-time-to-buy-and-sell-stock ├── 121-best-time-to-buy-and-sell-stock.java ├── NOTES.md └── README.md ├── 124. Binary Tree Maximum Path Sum ├── 124. Binary Tree Maximum Path Sum.java ├── Maximum path sum.cpp ├── Maximum path sum.java └── Readme.md ├── 133-clone-graph ├── 133-clone-graph.java ├── NOTES.md └── README.md ├── 136-single-number ├── 136-single-number.java ├── NOTES.md └── README.md ├── 137-single-number-ii ├── 137-single-number-ii.java ├── NOTES.md └── README.md ├── 1436. Destination City - Leetcode ├── 1436. Destination City.cpp └── 1436. Destination City.java ├── 1436. Destination City └── 1436. Destination City.cpp ├── 15-3sum ├── 15-3sum.java ├── NOTES.md └── README.md ├── 1662-check-if-two-string-arrays-are-equivalent ├── 1662-check-if-two-string-arrays-are-equivalent.java ├── NOTES.md └── README.md ├── 169-majority-element ├── 169-majority-element.java └── NOTES.md ├── 1734-decode-xored-permutation ├── 1734-decode-xored-permutation.java ├── NOTES.md └── README.md ├── 1734. Decode XORed Permutation-LeetcCoode └── 1734. Decode XORed Permutation.cpp ├── 19-remove-nth-node-from-end-of-list ├── 19-remove-nth-node-from-end-of-list.java ├── NOTES.md └── README.md ├── 199-binary-tree-right-side-view ├── 199-binary-tree-right-side-view.java └── README.md ├── 20-valid-parentheses ├── 20-valid-parentheses.java ├── NOTES.md └── README.md ├── 20. Valid Parentheses - Leetcode └── Valid Parentheses.java ├── 201-bitwise-and-of-numbers-range ├── 201-bitwise-and-of-numbers-range.java ├── NOTES.md └── README.md ├── 201. Bitwise AND of Numbers Range - LeetCode └── 201. Bitwise AND of Numbers Range.cpp ├── 204.Count Primes.java ├── 207-course-schedule ├── 207-course-schedule.java ├── NOTES.md └── README.md ├── 209-minimum-size-subarray-sum ├── 209-minimum-size-subarray-sum.java ├── NOTES.md └── README.md ├── 210-course-schedule-ii ├── 210-course-schedule-ii.java ├── NOTES.md └── README.md ├── 210. Course Schedule II ├── 210. Course Schedule II.java ├── Course Schedule II.cpp ├── Course Schedule II.java └── Readme.md ├── 215-kth-largest-element-in-an-array ├── 215-kth-largest-element-in-an-array.java ├── NOTES.md └── README.md ├── 218-the-skyline-problem ├── 218-the-skyline-problem.java ├── NOTES.md └── README.md ├── 22-generate-parentheses ├── 22-generate-parentheses.java ├── NOTES.md └── README.md ├── 230. Kth Smallest Element in a BST ├── 230. Kth Smallest Element in a BST.java ├── Readme.md ├── k-th Smallest in BST-GFG.cpp └── k-th Smallest in BST-GFG.java ├── 232. Implement Queue using Stacks - Leetcode └── Implement Queue using Stacks.java ├── 233. Number of Digit One - Leetcode └── Number of Digit One.java ├── 236-lowest-common-ancestor-of-a-binary-tree ├── 236-lowest-common-ancestor-of-a-binary-tree.java ├── NOTES.md └── README.md ├── 239-Sliding Window Maximum ├── 239-Sliding Window Maximum.java └── K Sized Subarray Maximum-GFG.java ├── 2482. Difference Between Ones and Zeros in Row and Column - Leetcode ├── 2482. Difference Between Ones and Zeros in Row and Column.cpp └── 2482. Difference Between Ones and Zeros in Row and Column.java ├── 2608. Shortest Cycle in a Graph ├── 2608. Shortest Cycle in a Graph.java ├── Readme.md ├── Shortest Cycle.cpp └── Shortest Cycle.java ├── 2D Difference Array-gfg-prefixSum └── 2D Difference Array.java ├── 2D Hopscotch - GFG ├── 2d-hopscotch.java └── README.md ├── 3 Divisors - GFG ├── 3-divisors.java └── README.md ├── 303-range-sum-query-immutable ├── 303-range-sum-query-immutable.java ├── NOTES.md └── README.md ├── 31-next-permutation ├── 31-next-permutation.java ├── NOTES.md └── README.md ├── 31. Next Permutation - Leetcode └── 31. Next Permutation.java ├── 323. Number of Connected Components in an Undirected Graph - Leetcode └── 323. Number of Connected Components in an Undirected Graph.java ├── 33-search-in-rotated-sorted-array └── NOTES.md ├── 338-counting-bits ├── 338-counting-bits.java ├── NOTES.md └── README.md ├── 338. Counting Bits - LeetCode └── 338. Counting Bits.cpp ├── 347-top-k-frequent-elements ├── 347-top-k-frequent-elements.java ├── NOTES.md └── README.md ├── 399-evaluate-division ├── 399-evaluate-division.java ├── NOTES.md └── README.md ├── 4-median-of-two-sorted-arrays ├── 4-median-of-two-sorted-arrays.java ├── NOTES.md └── README.md ├── 42-trapping-rain-water ├── 42-trapping-rain-water.java ├── NOTES.md └── README.md ├── 44. Wildcard Matching ├── 44. Wildcard Matching.java └── Readme.md ├── 46-permutations ├── 46-permutations.java ├── NOTES.md └── README.md ├── 461-hamming-distance ├── 461-hamming-distance.java ├── NOTES.md └── README.md ├── 461. Hamming Distance - Leetcoode └── 461. Hamming Distance.cpp ├── 494. Target Sum - Leetcode └── 494. Target Sum.java ├── 5. Longest Palindromic Substring ├── 5. Longest Palindromic Substring -LeetCode.java └── 647. Palindromic Substrings.java ├── 51-n-queens ├── 51-n-queens.java └── README.md ├── 516. Longest Palindromic Subsequence -Leetcoode └── 516. Longest Palindromic Subsequence.java ├── 518. Coin Change II - leetcode └── 518. Coin Change II.java ├── 52-n-queens-ii ├── 52-n-queens-ii.java ├── NOTES.md └── README.md ├── 53-maximum-subarray ├── 53-maximum-subarray.java ├── NOTES.md └── README.md ├── 54-spiral-matrix ├── 54-spiral-matrix.java ├── NOTES.md └── README.md ├── 542. 01 Matrix ├── 542. 01 Matrix.java ├── Distance of nearest cell having 1.cpp └── Distance of nearest cell having 1.java ├── 56. Merge Intervals - leetcode ├── 56. Merge Intervals.cpp └── 56. Merge Intervals.java ├── 622-design-circular-queue ├── 622-design-circular-queue.java ├── NOTES.md └── README.md ├── 623-add-one-row-to-tree ├── 623-add-one-row-to-tree.java ├── NOTES.md └── README.md ├── 63. Unique Paths II- leetcode └── 63. Unique Paths II.java ├── 658-find-k-closest-elements ├── 658-find-k-closest-elements.java ├── NOTES.md └── README.md ├── 659. Split Array into Consecutive Subsequences ├── 659. Split Array into Consecutive Subsequences.cpp └── 659. Split Array into Consecutive Subsequences.java ├── 669. Trim a Binary Search Tree ├── 669. Trim a Binary Search Tree.java ├── Readme.md ├── Remove BST keys outside given range.cpp └── Remove BST keys outside given range.java ├── 706-design-hashmap ├── 706-design-hashmap.java ├── NOTES.md └── README.md ├── 72. Edit Distance - LeetCode └── 72. Edit Distance.java ├── 75-sort-colors ├── 75-sort-colors.java ├── NOTES.md └── README.md ├── 775. Global and Local Inversions - LeetCode └── 775. Global and Local Inversions.java ├── 79-word-search ├── 79-word-search.java ├── NOTES.md └── README.md ├── 797-all-paths-from-source-to-target ├── NOTES.md └── README.md ├── 828-count-unique-characters-of-all-substrings-of-a-given-string ├── 828-count-unique-characters-of-all-substrings-of-a-given-string.java ├── NOTES.md └── README.md ├── 838-push-dominoes ├── 838-push-dominoes.java ├── NOTES.md └── README.md ├── 84. Largest Rectangle in Histogram - Leetcode └── 84. Largest Rectangle in Histogram.java ├── 85. Maximal Rectangle - Leetcode. └── 85. Maximal Rectangle.java ├── 862-shortest-subarray-with-sum-at-least-k ├── 862-shortest-subarray-with-sum-at-least-k.java ├── NOTES.md └── README.md ├── 907-sum-of-subarray-minimums ├── 907-sum-of-subarray-minimums.java ├── NOTES.md └── README.md ├── 918. Maximum Sum Circular Subarray - Leetcode └── 918. Maximum Sum Circular Subarray.java ├── 959-regions-cut-by-slashes ├── 959-regions-cut-by-slashes.java └── README.md ├── 96-unique-binary-search-trees ├── 96-unique-binary-search-trees.java ├── NOTES.md └── README.md ├── 97. Interleaving String ├── 97. Interleaving String.java └── readme.md ├── 979. Distribute Coins in Binary Tree ├── 979. Distribute Coins in Binary Tree.java ├── Distribute Candies-GFG.cpp ├── Distribute Candies-GFG.java └── Readme.md ├── 987. Vertical Order Traversal of a Binary Tree.java ├── 990-satisfiability-of-equality-equations ├── 990-satisfiability-of-equality-equations.java └── README.md ├── A Game of LCM - GFG ├── README.md └── a-game-of-lcm.java ├── A difference of values and indexes - GFG ├── README.md └── a-difference-of-values-and-indexes.java ├── ASCII Range Sum-GFG-PrefiXsum └── ASCII Range Sum.java ├── AVL Tree Deletion - GFG ├── README.md └── avl-tree-deletion.cpp ├── Absolute List Sorting - GFG ├── README.md └── absolute-list-sorting.java ├── Absolute difference divisible by K - GFG ├── README.md └── absolute-difference-divisible-by-k.java ├── Account Merge - Disjoint Set - GFG └── Account Merge.java ├── Add Binary Strings - GFG ├── README.md └── add-binary-strings.java ├── Add Minimum Characters - GFG ├── README.md └── add-minimum-characters.java ├── Adding Ones - GFG ├── README.md ├── adding-ones.cpp └── adding-ones.java ├── Aggressive Cows - GFG ├── README.md └── aggressive-cows.java ├── Akku and Binary Numbers - GFG ├── README.md └── akku-and-binary-numbers.java ├── Alex Travelling - GFG ├── README.md └── alex-travelling.java ├── All Unique Permutations of an array ├── All Unique Permutations of an array.java └── Readme.md ├── Alternate Vowel and Consonant String - GFG ├── README.md └── alternate-vowel-and-consonant-string.java ├── Anti Diagonal Traversal of Matrix - GFG └── Anti Diagonal Traversal of Matrix.java ├── Apple Sequences - GFG ├── README.md └── apple-sequences.java ├── Arithmetic Number - GFG ├── README.md └── arithmetic-number.java ├── Arranging the array - GFG ├── README.md ├── arranging-the-array.cpp └── arranging-the-array.java ├── Array Pair Sum Divisibility Problem - GFG ├── README.md └── array-pair-sum-divisibility-problem.java ├── Array Pair Sum Divisibility Problem- GFG └── Array Pair Sum Divisibility Problem.java ├── Array Removals - GFG ├── README.md └── array-removals.java ├── Articulation Point - I - GFG ├── README.md └── articulation-point-i.java ├── Asteroid Collision - GFG ├── README.md └── asteroid-collision.java ├── Avoid Explosion - GFG ├── README.md └── avoid-explosion.java ├── BFS of graph - GFG ├── README.md ├── bfs-of-graph.cpp └── bfs-of-graph.java ├── BST Downward Traversal - GFG ├── README.md └── bst-downward-traversal.java ├── BST Maximum Difference - GFG ├── README.md ├── bst-maximum-difference.cpp └── bst-maximum-difference.java ├── BST to max heap_gfg_M.java ├── Balanced string - GFG ├── README.md └── balanced-string.java ├── Balancing Consonants and Vowels Ratio - gfg -prefixSUm └── Balancing Consonants and Vowels Ratio.java ├── Balloon Everywhere - GFG ├── README.md └── balloon-everywhere.java ├── Base Equivalence - GFG ├── README.md └── base-equivalence.java ├── Best Node - GFG ├── README.md └── best-node.java ├── Better String-GFG ├── Better String.cpp └── Better String.java ├── Bheem Wants Ladoos - GFG ├── README.md └── bheem-wants-ladoos.java ├── Binary Modulo - GFG ├── README.md └── binary-modulo.java ├── Binary Tree from Inorder and Postorder ├── 889. Construct Binary Tree from Preorder and Postorder Traversal.java ├── Binary Tree from Inorder and Postorder.cpp ├── Binary Tree from Inorder and Postorder.java └── Readme.md ├── Binary Tree to BST - GFG ├── README.md └── binary-tree-to-bst.cpp ├── Binary Tree to CDLL- GFG ├── Binary Tree to CDLL.cpp └── Binary Tree to CDLL.java ├── Binary Tree to DLL - GFG └── Binary Tree to DLL.java ├── Binary matrix having maximum number of 1s - GFG ├── README.md └── binary-matrix-having-maximum-number-of-1s.java ├── Binary representation of next number -n GFG └── Binary representation of next number.java ├── Bit Magic - GFG ├── README.md └── bit-magic.java ├── Black and White - GFG ├── README.md └── black-and-white.java ├── Bleak Numbers - GFG ├── README.md ├── bleak-numbers.cpp └── bleak-numbers.java ├── Boolean Matrix - GFG ├── README.md ├── boolean-matrix.cpp └── boolean-matrix.java ├── Boolean Parenthesization- GFG └── Boolean Parenthesization.java ├── Bottom View of Binary Tree ├── Bottom View of Binary Tree.cpp ├── Bottom View of Binary Tree.java └── Readme.md ├── Break a number - GFG ├── README.md └── break-a-number.java ├── Bridges in Graph - GFG └── Bridges in Graph.java ├── Build the smallest - GFG ├── README.md └── build-the-smallest.java ├── Burst Balloons - GFG ├── README.md └── burst-balloons.java ├── Bus Conductor - GFG ├── README.md └── bus-conductor.java ├── Buy Maximum Stocks if i stocks can be bought on i-th day - GFG └── Buy Maximum Stocks if i stocks can be bought on i-th day.java ├── Cake Distribution Problem - GFG ├── Cake Distribution Problem.cpp ├── README.md └── cake-distribution-problem.java ├── CamelCase Pattern Matching - GFG ├── README.md └── camel-case-pattern-matching.java ├── Candy - GFG └── Candy.java ├── Carpet into Box - GFG ├── README.md └── carpet-into-box.java ├── Case-specific Sorting of Strings - GFG ├── README.md └── casespecific-sorting-of-strings.java ├── Ceil in BST - GFG ├── README.md └── ceil-in-bst.java ├── Check for Balanced Tree - GFG ├── README.md ├── check-for-balanced-tree.cpp └── check-for-balanced-tree.java ├── Check for Children Sum Property in a Binary Tree - GFG └── Check for Children Sum Property in a Binary Tree.java ├── Check if Tree is Isomorphic - GFG ├── README.md ├── check-if-tree-is-isomorphic.cpp └── check-if-tree-is-isomorphic.java ├── Check if a given graph is tree or not - GFG ├── Check if a given graph is tree or not.java └── Leetcode 261. graph valid tree.java ├── Check if all levels of two trees are anagrams or not - GFG ├── README.md └── check-if-all-levels-of-two-trees-are-anagrams-or-not.java ├── Check if it is possible to convert one string into another with given constraints - GFG ├── README.md └── check-if-it-is-possible-to-convert-one-string-into-another-with-given-constraints.java ├── Check if strings are rotations of each other or not- GFG ├── Check if strings are rotations of each other or not.cpp └── Check if strings are rotations of each other or not.java ├── Check whether K-th bit is set or not - GFG ├── README.md ├── check-whether-kth-bit-is-set-or-not.cpp └── check-whether-kth-bit-is-set-or-not.java ├── Chicks in a Zoo - GFG ├── README.md └── chicks-in-a-zoo.java ├── Chocolate Distribution Problem - GFG ├── README.md ├── chocolate-distribution-problem.cpp └── chocolate-distribution-problem.java ├── Chocolate Pickup II ├── 1463. Cherry Pickup II.java ├── Chocolate Pickup II.java ├── Readme.md └── Stock Buy and Sell with Cooldown.java ├── City With the Smallest Number of Neighbors at a Threshold Distance - GFG - Graphs- Dijkstras. └── City With the Smallest Number of Neighbors at a Threshold Distance.java ├── Clone Graph ├── 133. Clone Graph - Leetcode └── Clone an Undirected Graph - GFG ├── Coin Change (Minimum Coins)- GFG └── Coin Change (Minimum Coins).java ├── Coin Change - GFG ├── README.md ├── coin-change.cpp └── coin-change.java ├── Coin Piles - binary search - GFG ├── Coin Piles.java └── Readme.md ├── Column name from a given column number - GFG ├── README.md ├── column-name-from-a-given-column-number.cpp └── column-name-from-a-given-column-number.java ├── Combination Sum II - GFG └── Combination Sum II.java ├── Complement - GFG ├── README.md └── complement.java ├── Connect Nodes at Same Level - GFG ├── README.md └── connect-nodes-at-same-level.java ├── Construct Binary Tree from Inorder and Postorder - GFG └── Construct Binary Tree from Inorder and Postorder.java ├── Construct Binary Tree from String with bracket representation - GFG ├── README.md └── construct-binary-tree-from-string-with-bracket-representation.java ├── Construct a Full Binary Tree - GFG ├── Construct a Full Binary Tree.cpp ├── README.md └── construct-a-full-binary-tree.java ├── Container With Most Water - GFG ├── README.md └── container-with-most-water.java ├── Convert an array to reduced form - GFG ├── README.md └── convert-an-array-to-reduced-form.java ├── Coordinates of the last cell in a Matrix on which performing given operations exits from the Matrix - GFG ├── README.md └── coordinates-of-the-last-cell-in-a-matrix-on-which-performing-given-operations-exits-from-the-matrix.java ├── Copy Set Bits in Range - GFG ├── README.md └── copy-set-bits-in-range.java ├── Count Binary Strings With No Consecutive 1s - GFG ├── README.md └── count-binary-strings-with-no-consecutive-1s.java ├── Count Cyclic Paths - GFG ├── README.md └── count-cyclic-paths.java ├── Count Lucky Permutations - GFG ├── README.md └── count-lucky-permutations.java ├── Count Pairs in an Array - GFG └── Count Pairs in an Array.java ├── Count Special Numbers - GFG ├── README.md ├── count-special-numbers.cpp └── count-special-numbers.java ├── Count Subarrays with given XOR └── Count Subarrays with given XOR.java ├── Count Total Setbits - GFG ├── README.md └── count-total-setbits.java ├── Count all possible paths from top left to bottom right_gfg_E.java ├── Count all triplets with given sum in sorted array. └── Count all triplets with given sum in sorted array.java ├── Count distinct elements in every window -gfg-sliding window └── Count distinct elements in every window.java ├── Count even length - GFG ├── README.md └── count-even-length.java ├── Count number of free cell - GFG ├── README.md └── count-number-of-free-cell.java ├── Count number of hops - GFG ├── README.md ├── count-number-of-hops.cpp └── count-number-of-hops.java ├── Count number of substrings - GFG ├── README.md └── count-number-of-substrings.cpp ├── Count of Subarrays - GFG ├── README.md └── count-of-subarrays.java ├── Count pairs Sum in matrices - GFG └── Count pairs Sum in matrices.java ├── Count possible ways to construct buildings - GFG └── Count possible ways to construct buildings.java ├── Count the Number of Full Binary Trees - GFG ├── README.md └── count-the-number-of-full-binary-trees.java ├── Count the Substrings - GFG ├── README.md ├── count-the-substrings.cpp └── count-the-substrings.java ├── Count the elements -GFG └── Count the elements.java ├── Count the number of possible triangles - gfg - two pointers └── Count the number of possible triangles.java ├── Count the subarrays having product less than k - GFG ├── README.md ├── count-the-subarrays-having-product-less-than-k.cpp └── count-the-subarrays-having-product-less-than-k.java ├── Counting elements in two arrays_e_gfg_21.java ├── Cutting Binary String - GFG ├── README.md └── cutting-binary-string.java ├── Cutting Rectangles - GFG ├── README.md └── cutting-rectangles.java ├── Cyclically rotate an array by one - GFG ├── README.md └── cyclically-rotate-an-array-by-one.java ├── DFS of Graph - GFG ├── README.md └── dfs-of-graph.java ├── Day1_04_06_22 TimeComplexity.pdf ├── Day2_05_06_22 Bit_Manipulation.pdf ├── Day3W2_11_06_22 Mathematics .pdf ├── Day4W2_12_06_22_Arrays (1).pdf ├── Decimal Equivalent of Binary Linked List - GFG └── Decimal Equivalent of Binary Linked List.java ├── Decode the string - GFG ├── Decode the string.java ├── README.md ├── decode-the-string.java └── dry run.png ├── DecodeTheSring_gfg_M.java ├── Delete Middle of Linked List - GFG └── Delete Middle of Linked List.java ├── Delete a Node in Single Linked List - GFG ├── README.md ├── delete-a-node-in-single-linked-list.cpp └── delete-a-node-in-single-linked-list.java ├── Delete middle element of a stack - GFG ├── README.md ├── delete-middle-element-of-a-stack.cpp └── delete-middle-element-of-a-stack.java ├── Delete nodes having greater value on right - GFG ├── README.md ├── delete-nodes-having-greater-value-on-right.cpp └── delete-nodes-having-greater-value-on-right.java ├── Diagonal sum in binary tree - GFG └── Diagonal sum in binary tree.java ├── Difference Check-bucket sort - GFG └── Difference Check.java ├── Distance of nearest cell having 1 - GFG ├── README.md └── distance-of-nearest-cell-having-1.java ├── Distinct Coloring - GFG ├── README.md └── distinct-coloring.java ├── Distinct Difference - GFG ├── README.md └── distinct-difference.java ├── Divide in Incremental Groups - GFG ├── README.md ├── divide-in-incremental-groups.cpp └── divide-in-incremental-groups.java ├── Divisibility tree - GFG └── Divisibility tree.java ├── Dominant Pairs - GFG ├── README.md └── dominant-pairs.java ├── Duplicate subtree in Binary Tree - GFG ├── README.md └── duplicate-subtree-in-binary-tree.cpp ├── Earthquake and the Paint Shop - GFG ├── README.md └── earthquake-and-the-paint-shop.java ├── Earthquake and the Paint Shop_TreeMap_gfg_E.java ├── Enemy - GFG ├── README.md └── enemy.java ├── Equal Left and Right Subarray Sum - GFG ├── README.md └── equal-left-and-right-subarray-sum.java ├── Equalize the Towers - GFG ├── Equalize the Towers.java └── README.md ├── Equilibrium Point - GFG ├── README.md ├── equilibrium-point.cpp └── equilibrium-point.java ├── Euler circuit and Path-GFG ├── Count all Possible Path - GFG.java ├── Euler circuit and Path.cpp └── Euler circuit and Path.java ├── Evaluation of Postfix Expression - GFG ├── DYN RUN.png └── Evaluation of Postfix Expression.java ├── Even Swap - GFG ├── README.md ├── even-swap.cpp └── even-swap.java ├── Eventual Safe States - GFG ├── README.md ├── eventual-safe-states.cpp └── eventual-safe-states.java ├── Exit Point in a Matrix - GFG └── Exit Point in a Matrix.java ├── Express as sum of power of natural numbers - GFG ├── README.md └── express-as-sum-of-power-of-natural-numbers.java ├── Expression Add Operators - GFG ├── README.md └── expression-add-operators.java ├── Facing the sun - GFG └── Facing the sun.java ├── Fact Digit Sum_gfg_s12.java ├── Farthest Smaller Right_BinarySearch-GFG └── Farthest Smaller Right.java ├── Fill the Matrix - GFG ├── README.md └── fill-the-matrix.java ├── Fill up buckets - GFG ├── README.md └── fill-up-buckets.java ├── Filling Bucket - GFG ├── README.md └── filling-bucket.java ├── FillingBuket_fibo_gfg_M.java ├── Find All Four Sum Numbers - GFG ├── README.md ├── find-all-four-sum-numbers.cpp └── find-all-four-sum-numbers.java ├── Find Common Nodes in two BSTs - GFG ├── README.md ├── find-common-nodes-in-two-bsts.cpp └── find-common-nodes-in-two-bsts.java ├── Find H-Index-with-CountSort-GFG └── Find H-Index.java ├── Find K Smallest Sum Pairs ├── Find K Smallest Sum Pairs.cpp ├── Find K Smallest Sum Pairs.java └── Readme.md ├── Find Kth permutation - GFG ├── README.md └── find-kth-permutation.java ├── Find Maximum Equal sum of Three Stacks - GFG ├── README.md └── find-maximum-equal-sum-of-three-stacks.java ├── Find Number - GFG ├── README.md └── find-number.java ├── Find Pair Given Difference-GFG └── Find Pair Given Difference.java ├── Find Total Time Taken - GFG ├── README.md └── find-total-time-taken.java ├── Find anagrams in linked list - GFG ├── README.md └── find-anagrams-in-linked-list.java ├── Find element occuring once when all other are present thrice-GFG └── Find element occuring once when all other are present thrice.java ├── Find first set bit - GFG ├── README.md ├── find-first-set-bit.cpp └── find-first-set-bit.java ├── Find k-th smallest element in given n ranges - GFG ├── README.md ├── find-kth-smallest-element-in-given-n-ranges.cpp └── find-kth-smallest-element-in-given-n-ranges.java ├── Find kth element of spiral matrix - GFG ├── README.md ├── find-kth-element-of-spiral-matrix.cpp └── find-kth-element-of-spiral-matrix.java ├── Find maximum volume of a cuboid - GFG ├── Find maximum volume of a cuboid.java └── proof why w equals l.pdf ├── Find minimum number of Laptops required - GFG ├── README.md └── find-minimum-number-of-laptops-required.java ├── Find missing in second array -GFG └── Find missing in second array.java ├── Find number of closed islands - GFG ├── Find number of closed islands.cpp ├── README.md └── find-number-of-closed-islands.java ├── Find number of islands └── Find number of islands.java ├── Find patterns - GFG ├── README.md └── find-patterns.java ├── Find shortest safe route in a matrix - GFG └── Find shortest safe route in a matrix.java ├── Find the Closest Element in BST - GFG ├── Find the Closest Element in BST.cpp ├── README.md └── find-the-closest-element-in-bst.java ├── Find the N-th character - GFG └── Find the N-th character.java ├── Find the String- GFG ├── Find the String.cpp └── Find the String.java ├── Find the closest pair from two arrays - GFG ├── README.md └── find-the-closest-pair-from-two-arrays.java ├── Find the first node of loop in linked list - GFG ├── README.md └── find-the-first-node-of-loop-in-linked-list.java ├── Find the longest string - GFG ├── README.md └── find-the-longest-string.java ├── Find the maximum GCD of the siblings of a Binary Tree - GFG ├── README.md └── find-the-maximum-gcd-of-the-siblings-of-a-binary-tree.java ├── Find the smallest missing number in sorted array - GFG └── Find the smallest missing number in sorted array.java ├── Find the string in grid - GFG ├── README.md ├── find-the-string-in-grid.cpp └── find-the-string-in-grid.java ├── Find triplets with zero sum - GFG ├── README.md ├── find-triplets-with-zero-sum.cpp └── find-triplets-with-zero-sum.java ├── First and last occurrences of x - GFG ├── README.md ├── first-and-last-occurrences-of-x.cpp └── first-and-last-occurrences-of-x.java ├── First non-repeating character in a stream - GFG ├── README.md ├── first-nonrepeating-character-in-a-stream.cpp └── first-nonrepeating-character-in-a-stream.java ├── Fitting The Array_gfg_E.java ├── Fixing Two swapped nodes of a BST - GFG ├── README.md ├── fixing-two-swapped-nodes-of-a-bst.cpp └── fixing-two-swapped-nodes-of-a-bst.java ├── Flatten binary tree to linked list_tree_gfg_M.java ├── Flattening a Linked List - GFG ├── README.md └── flattening-a-linked-list.java ├── Flip Bits - GFG ├── README.md ├── flip-bits.cpp └── flip-bits.java ├── Floor in BST - GFG ├── README.md ├── floor-in-bst.cpp └── floor-in-bst.java ├── Floyd Warshall - GFG ├── README.md └── floyd-warshall.java ├── FoldablebinaryTree_m _gfg_s19.java ├── Form the Largest Number-Sorting-GFG └── Form the Largest Number.java ├── Fraction pairs with sum 1 - GFG ├── README.md ├── fraction-pairs-with-sum-1.cpp └── fraction-pairs-with-sum-1.java ├── Frequency Game - GFG ├── README.md └── frequency-game.java ├── Friends Pairing Problem_gfg_s10.java ├── Frog Jump ├── Frog Jump.cpp ├── Frog Jump.java └── Readme.md ├── Frogs and Jumps - GFG ├── README.md ├── frogs-and-jumps.cpp └── frogs-and-jumps.java ├── GCD Array - GFG ├── README.md └── gcd-array.java ├── Game Of Subsets - GFG ├── README.md └── game-of-subsets.java ├── Game of XOR - GFG ├── Game of XOR.java └── README.md ├── Game with String - GFG └── Game with String.java ├── Geek and Strings_TRIE_gfg_M.java ├── Geek hates too many 1s - GFG ├── README.md └── geek-hates-too-many-1s.java ├── Geek's Village and Wells - GFG ├── README.md └── geeks-village-and-wells.java ├── Geeks And The String - GFG ├── README.md └── geeks-and-the-string.java ├── Geeks Island - GFG ├── README.md └── geeks-island.java ├── Generalised Fibonacci numbers - GFG └── Generalised Fibonacci numbers.java ├── Generate Binary Numbers ├── Generate Binary Numbers.java └── Readme.md ├── Generate IP Addresses_e_gfg_s20.java ├── Get Minimum Squares ├── 279. Perfect Squares.java ├── Get Minimum Squares.java └── Readme.md ├── Given a linked list of 0s, 1s and 2s, sort it. - GFG ├── README.md ├── given-a-linked-list-of-0s-1s-and-2s-sort-it..cpp └── given-a-linked-list-of-0s-1s-and-2s-sort-it..java ├── Good Stones - GFG ├── README.md └── good-stones.java ├── Good Subtrees - GFG ├── README.md └── good-subtrees.java ├── Gray to Binary equivalent -GFG └── Gray to Binary equivalent.java ├── Grouping Of Numbers - GFG ├── README.md └── grouping-of-numbers.java ├── Hamiltonian Path - GFG ├── README.md └── hamiltonian-path.java ├── Hands of Straights - GFG ├── README.md └── hands-of-straights.java ├── Heap Sort - GFG ├── README.md ├── heap-sort.cpp └── heap-sort.java ├── Height of Binary Tree - GFG ├── README.md ├── height-of-binary-tree.cpp └── height-of-binary-tree.java ├── IPL 2021 - Match Day 2_maxInSubarrayOfSizeK_Deque_gfg_M.java ├── Implement Atoi ├── 8. String to Integer (atoi) - LeetCode.java ├── Implement Atoi.java └── updated code with leading spaces.java ├── Implement two stacks in an array - GFG ├── README.md ├── implement-two-stacks-in-an-array.cpp └── implement-two-stacks-in-an-array.java ├── Indexes of Subarray Sum-GFG-SlidingWindow └── Indexes of Subarray Sum.java ├── Inorder Successor in BST - GFG ├── README.md ├── inorder-successor-in-bst.cpp └── inorder-successor-in-bst.java ├── Insert a node in a BST - GFG ├── README.md ├── insert-a-node-in-a-bst.cpp └── insert-a-node-in-a-bst.java ├── Insert and Search in a Trie - GFG └── Insert and Search in a Trie.java ├── Insertion Sort for Singly Linked List - GFG └── Insertion Sort for Singly Linked List.java ├── Intersection Point in Y Shaped Linked Lists - GFG ├── README.md └── intersection-point-in-y-shaped-linked-lists.java ├── Intersection of two sorted Linked lists- GFG ├── Intersection of two sorted Linked lists.cpp └── Intersection of two sorted Linked lists.java ├── Is Binary Number Multiple of 3 - GFG ├── README.md └── is-binary-number-multiple-of-3.java ├── Is it Fibonacci - GFG ├── README.md └── is-it-fibonacci.java ├── Isomorphic Strings - GFG ├── Isomorphic Strings.cpp ├── Isomorphic Strings.java └── README.md ├── Job Sequencing Problem - GFG ├── Job Sequencing Problem - DisjointSet.java ├── Job Sequencing Problem - Sorting.java ├── README.md └── job-sequencing-problem.java ├── Josephus problem - GFG ├── README.md └── josephus-problem.java ├── Juggler Sequence - GFG └── Juggler Sequence.java ├── Jumping Numbers - GFG ├── README.md └── jumping-numbers.java ├── K Closest Points to Origin ├── K Closest Points to Origin.cpp ├── K Closest Points to Origin.java └── Readme.md ├── K Sum Paths-GFG ├── K Sum Paths.cpp └── K Sum Paths.java ├── K closest Values ├── K closest Values.cpp ├── K closest Values.java └── Readme.md ├── K closest elements - GFG └── K closest elements.java ├── K distance from root -GFG └── K distance from root.java ├── K-Pangrams - GFG └── K-Pangrams.java ├── Kadane's Algorithm - GFG ├── README.md └── kadanes-algorithm.java ├── Knight Walk_gfg_s13.java ├── Knight in Geekland - GFG ├── README.md ├── knight-in-geekland.cpp └── knight-in-geekland.java ├── Kth Ancestor in a Tree - GFG ├── README.md ├── kth-ancestor-in-a-tree.cpp └── kth-ancestor-in-a-tree.java ├── Kth common ancestor in BST - GFG └── Kth common ancestor in BST.java ├── Kth largest element in BST - GFG ├── README.md ├── kth-largest-element-in-bst.cpp └── kth-largest-element-in-bst.java ├── Kth smallest element - GFG ├── README.md ├── kth-smallest-element.cpp └── kth-smallest-element.java ├── LCM Triplet - GFG ├── README.md └── lcm-triplet.java ├── LIS.java ├── Largest Sum Cycle - GFG ├── README.md └── largest-sum-cycle.java ├── Largest Sum Subarray of Size at least K - GFG └── Largest Sum Subarray of Size at least K.java ├── Largest number possible - GFG ├── README.md ├── largest-number-possible.cpp └── largest-number-possible.java ├── Largest prime factor - GFG ├── README.md ├── largest-prime-factor.cpp └── largest-prime-factor.java ├── Largest square formed in a matrix - GFG └── Largest square formed in a matrix.java ├── Largest subsquare surrounded by X _ GFG └── Largest subsquare surrounded by X.java ├── Largest subtree sum in a tree - GFG ├── README.md └── largest-subtree-sum-in-a-tree.java ├── Largest sum contiguous subarray ├── Last modified ball - GFG ├── README.md └── last-modified-ball.java ├── Leaders in an array - GFG ├── README.md ├── leaders-in-an-array.cpp └── leaders-in-an-array.java ├── Leaf under budget - GFG ├── README.md ├── leaf-under-budget.cpp └── leaf-under-budget.java ├── Leetcode 118. Pascal's Triangle ├── Leftmost and rightmost nodes of binary tree - GFG ├── README.md ├── leftmost-and-rightmost-nodes-of-binary-tree.cpp └── leftmost-and-rightmost-nodes-of-binary-tree.java ├── Lemonade Change - GFG ├── README.md ├── lemonade-change.cpp └── lemonade-change.java ├── Length of the longest subarray with positive product - GFG ├── README.md └── length-of-the-longest-subarray-with-positive-product.java ├── Letters Collection - GFG ├── Letters Collection.cpp ├── Letters Collection.java └── README.md ├── Level of Nodes - GFG ├── README.md ├── level-of-nodes.cpp └── level-of-nodes.java ├── Level order traversal - GFG ├── README.md ├── level-order-traversal.cpp └── level-order-traversal.java ├── Level order traversal in spiral form - GFG ├── README.md ├── level-order-traversal-in-spiral-form.cpp └── level-order-traversal-in-spiral-form.java ├── Lexicographically smallest string_Stack_gfg_M.java ├── License Key Formatting_gfg_M_stringMan.java ├── Longest Bitonic subsequence - GFG ├── README.md └── longest-bitonic-subsequence.java ├── Longest Common Subsequence - GFG ├── README.md ├── longest-common-subsequence.cpp └── longest-common-subsequence.java ├── Longest Increasing Subsequence - GFG ├── README.md ├── longest-increasing-subsequence.cpp └── longest-increasing-subsequence.java ├── Longest K unique characters substring - GFG ├── README.md ├── longest-k-unique-characters-substring.cpp └── longest-k-unique-characters-substring.java ├── Longest Palindrome in a String - GFG ├── README.md ├── longest-palindrome-in-a-string.cpp └── longest-palindrome-in-a-string.java ├── Longest Palindromic Subsequence - GFG ├── README.md ├── longest-palindromic-subsequence.cpp └── longest-palindromic-subsequence.java ├── Longest Perfect Piece - GFG ├── README.md └── longest-perfect-piece.java ├── Longest Prefix Suffix - LPS array - GFG ├── LPS Array.java ├── Longest Prefix Suffix.java └── what is proper prefix and proper suffix ├── Longest Repeating Subsequence - GFG ├── README.md ├── longest-repeating-subsequence.cpp └── longest-repeating-subsequence.java ├── Longest Subarray with Majority Greater than K-gfg-prefixSUm └── Longest Subarray with Majority Greater than K.java ├── Longest repeating and non-overlapping substring - GFG └── Longest repeating and non-overlapping substring.java ├── Longest subarray with sum divisible by K-GFG └── Longest subarray with sum divisible by K.java ├── Longest subsequence-1 - GFG └── Longest subsequence-1.java ├── Longest substring with distinct characters - GFG - Sliding window └── Longest substring with distinct characters.java ├── Longest valid Parentheses - GFG └── Longest valid Parentheses.java ├── LongestIncreasingSubsequeneTab.java ├── Lowest Common Ancestor in a BST - GFG ├── README.md ├── lowest-common-ancestor-in-a-bst.cpp └── lowest-common-ancestor-in-a-bst.java ├── Lucky Numbers - GFG ├── README.md ├── lucky-numbers.cpp └── lucky-numbers.java ├── Magic Triplets - GFG ├── README.md └── magic-triplets.java ├── Majority Vote - GFG └── Majority Vote.java ├── Make Array Elements Equal - GFG ├── README.md └── make-array-elements-equal.java ├── Make Matrix Beautiful - GFG ├── README.md ├── make-matrix-beautiful.cpp └── make-matrix-beautiful.java ├── Make Matrix Beautiful-GFG-matrix └── Make Matrix Beautiful.java ├── Make Palindrome - GFG ├── README.md └── make-palindrome.java ├── Make array elements unique - GFG ├── README.md └── make-array-elements-unique.java ├── Make the array beautiful - GFG ├── README.md └── make-the-array-beautiful.java ├── Making A Large Island - GFG ├── README.md ├── making-a-large-island.cpp └── making-a-large-island.java ├── Matchsticks game - GFG ├── README.md ├── matchsticks-game.cpp └── matchsticks-game.java ├── Max Coins - GFG ├── README.md └── max-coins.java ├── Max DAG Edges ├── Max DAG Edges.cpp ├── Max DAG Edges.java └── Readme.md ├── Max Level Sum in Binary Tree - GFG ├── README.md └── max-level-sum-in-binary-tree.java ├── Max Min - GFG ├── Max Min.cpp ├── README.md └── max-min.java ├── Max Sum Subarray of size K - GFG └── Max Sum Subarray of size K.java ├── Max Sum without Adjacents - GFG ├── README.md └── max-sum-without-adjacents.java ├── Max length chain_gfg_s9.java ├── Max min Height - GFG ├── README.md └── max-min-height.cpp ├── Max sum in the configuration -GFG └── Max sum in the configuration.java ├── Maximize dot product - GFG └── Maximize dot product.java ├── Maximize the sum of selected numbers from a sorted array to make it empty - GFG ├── README.md └── maximize-the-sum-of-selected-numbers-from-a-sorted-array-to-make-it-empty.java ├── Maximize the sum of selected numbers from a sorted array to make it empty_gfg_M.java ├── Maximum Bipartite Matching - GFG ├── README.md └── maximum-bipartite-matching.java ├── Maximum Depth Of Binary Tree - GFG ├── README.md ├── maximum-depth-of-binary-tree.cpp └── maximum-depth-of-binary-tree.java ├── Maximum Diamonds - GFG ├── README.md ├── maximum-diamonds.cpp └── maximum-diamonds.java ├── Maximum Identical Bowls - GFG ├── README.md └── maximum-identical-bowls.java ├── Maximum Index - GFG ├── README.md ├── maximum-index.cpp └── maximum-index.java ├── Maximum Intersecting Lines - GFG ├── README.md └── maximum-intersecting-lines.java ├── Maximum Length - GFG ├── README.md └── maximum-length.java ├── Maximum Meetings in One Room - GFG ├── Maximum Meetings in One Room.cpp └── Maximum Meetings in One Room.java ├── Maximum Non-Adjacent Nodes Sum ├── Maximum Non-Adjacent Nodes Sum-GFG.java ├── Maximum Non-Adjacent Nodes Sum.cpp └── Readme.md ├── Maximum Number of Toys - GFG ├── README.md └── maximum-number-of-toys.java ├── Maximum Number of coins - GFG ├── README.md └── maximum-number-of-coins.java ├── Maximum Possible Value - GFG ├── README.md └── maximum-possible-value.java ├── Maximum Profit By Choosing A Subset Of Intervals - GFG ├── README.md └── maximum-profit-by-choosing-a-subset-of-intervals.java ├── Maximum Stone Removal ├── Maximum Stone Removal .java └── Readme.md ├── Maximum Sub Array - GFG ├── README.md └── maximum-sub-array.java ├── Maximum Sub-String after at most K changes - GFG ├── README.md └── maximum-sub-string-after-at-most-k-changes.java ├── Maximum Sum Combination - GFG ├── README.md └── maximum-sum-combination.java ├── Maximum Sum LCM - GFG ├── README.md └── maximum-sum-lcm.java ├── Maximum Sum Problem - GFG └── Maximum Sum Problem Morgan Stanley.java ├── Maximum Tip Calculator - GFG └── Maximum Tip Calculator.java ├── Maximum Triplet product - GFG ├── README.md └── maximum-triplet-product.java ├── Maximum Value - GFG ├── README.md └── maximum-value.java ├── Maximum Weight Node - GFG ├── README.md └── maximum-weight-node.java ├── Maximum number of 2X2 squares_gfg_E.java ├── Maximum occured integer - GFG └── Maximum occured integer.java ├── Maximum of all subarrays of size k - GFG ├── README.md └── maximum-of-all-subarrays-of-size-k.java ├── Maximum subset sum - GFG ├── README.md └── maximum-subset-sum.java ├── Maximum sum Rectangle-GFG-prefixSum-Kadane └── Maximum sum Rectangle.java ├── Maximum sum increasing subsequence - GFG ├── README.md ├── maximum-sum-increasing-subsequence.cpp └── maximum-sum-increasing-subsequence.java ├── Maximum sum of hour glass - GFG └── Maximum sum of hour glass.java ├── Median in a row-wise sorted Matrix - GFG ├── README.md └── median-in-a-rowwise-sorted-matrix.java ├── Median of BST - GFG ├── README.md ├── median-of-bst.cpp └── median-of-bst.java ├── Median of the Subarrays - GFG ├── README.md └── median-of-the-subarrays.cpp ├── Merge Sort on Doubly Linked List - GFG └── Merge Sort on Doubly Linked List.java ├── Merge Without Extra Space - GFG ├── All_4_methods.java ├── README.md ├── merge-without-extra-space.cpp └── merge-without-extra-space.java ├── Min Chars to Add for Palindrome - GFG └── Min Chars to Add for Palindrome.java ├── Min Time - GFG ├── README.md ├── min-time.cpp └── min-time.java ├── Min distance between two given nodes of a Binary Tree - GFG └── Min distance between two given nodes of a Binary Tree.java ├── Min operations - GFG ├── README.md └── min-operations.java ├── Minimize number of Students to be removed - GFG ├── README.md └── minimize-number-of-students-to-be-removed.java ├── Minimize the Difference - GFG - Minimize the Difference.java ├── Minimize the Difference - GFG └── Minimize the Difference.java ├── Minimize the Heights II - GFG └── Minimize the Heights II.java ├── Minimize the sum - GFG ├── README.md └── minimize-the-sum.java ├── Minimum Absolute Difference In BST - GFG └── Minimum Absolute Difference In BST.java ├── Minimum BST Sum Subtree - GFG └── README.md ├── Minimum Cost of ropes_Heaps_gfg_E.java ├── Minimum Days - GFG ├── README.md └── minimum-days.java ├── Minimum Deletions - GFG ├── README.md ├── minimum-deletions.cpp └── minimum-deletions.java ├── Minimum Integer - GFG ├── README.md ├── minimum-integer.cpp └── minimum-integer.java ├── Minimum K Consecutive Bit Flips ├── Minimum K Consecutive Bit Flips.java └── Readme.md ├── Minimum Multiplications to reach End - GFG ├── README.md ├── minimum-multiplications-to-reach-end.cpp └── minimum-multiplications-to-reach-end.java ├── Minimum Number - GFG ├── README.md ├── minimum-number.cpp └── minimum-number.java ├── Minimum Operations - GFG ├── README.md ├── minimum-operations.cpp └── minimum-operations.java ├── Minimum Points To Reach Destination - Dp - GFG └── Minimum Points To Reach Destination.java ├── Minimum Steps Required - GFG ├── README.md ├── minimum-steps-required.cpp └── minimum-steps-required.java ├── Minimum Steps to Halve Sum ├── Minimum Steps to Halve Sum.cpp ├── Minimum Steps to Halve Sum.java └── Readme.md ├── Minimum Swaps_gfg_E.java ├── Minimum X (xor) A - GFG ├── README.md └── minimum-x-xor-a.java ├── Minimum characters to be added at front to make string palindrome_gfg_H.java ├── Minimum distance between two numbers - GFG ├── Minimum distance between two numbers.cpp └── Minimum distance between two numbers.java ├── Minimum element in a sorted and rotated array - GFG └── Minimum element in a sorted and rotated array.java ├── Minimum number of Coins - GFG ├── README.md └── minimum-number-of-coins.java ├── Minimum sum partition - GFG ├── README.md └── minimum-sum-partition.java ├── Minimum times A has to be repeated such that B is a substring of it - GFG ├── README.md └── minimum-times-a-has-to-be-repeated-such-that-b-is-a-substring-of-it.java ├── Missing number in matrix - GFG ├── README.md └── missing-number-in-matrix.java ├── Modified Game of Nim - GFG └── Modified Game of Nim.java ├── Modified Numbers and Queries_gfg_E.jav ├── Modify Linked List-1 - GFG ├── README.md ├── modify-linked-list1.cpp └── modify-linked-list1.java ├── Mother Vertex - GFG ├── README.md ├── mother-vertex.cpp └── mother-vertex.java ├── Move Last Element to Front of a Linked List - GFG ├── README.md └── move-last-element-to-front-of-a-linked-list.java ├── Move Last Element to Front of a Linked List_gfg_E.java ├── Move all zeroes to end of array - GFG ├── README.md ├── move-all-zeroes-to-end-of-array.cpp └── move-all-zeroes-to-end-of-array.java ├── Multiply two strings - GFG ├── README.md ├── multiply-two-strings.cpp └── multiply-two-strings.java ├── Nearest smaller tower - GFG ├── README.md └── nearest-smaller-tower.java ├── Nearly Sorted ├── Nearly Sorted.cpp ├── Nearly Sorted.java └── Readme.md ├── Next Greater Element - GFG ├── README.md └── next-greater-element.java ├── Next Happy Number - GFG ├── README.md ├── next-happy-number.cpp └── next-happy-number.java ├── Next Smallest Palindrome - GFG ├── README.md ├── next-smallest-palindrome.cpp └── next-smallest-palindrome.java ├── Next_right_Node_E_gfg_29_8_22.java ├── Node at distance - GFG └── Node at distance ├── Nodes at given distance in binary tree - GFG ├── README.md └── nodes-at-given-distance-in-binary-tree.cpp ├── Non Repeating Character - GFG ├── README.md ├── non-repeating-character.cpp └── non-repeating-character.java ├── Normal BST to Balanced BST - GFG ├── README.md ├── normal-bst-to-balanced-bst.cpp └── normal-bst-to-balanced-bst.java ├── Nth Fibonacci Number - GFG ├── README.md ├── nth-fibonacci-number.cpp └── nth-fibonacci-number.java ├── Nth catalan number - GFG ├── README.md ├── nth-catalan-number.cpp └── nth-catalan-number.java ├── Number Formation - GFG ├── README.md └── number-formation.java ├── Number Of Enclaves - GFG ├── README.md ├── number-of-enclaves.cpp └── number-of-enclaves.java ├── Number Of Islands - GFG ├── README.md └── number-of-islands.java ├── Number Of Open Doors - GFG ├── README.md └── number-of-open-doors.java ├── Number following a pattern-GFG ├── Number following a pattern.cpp └── Number following a pattern.java ├── Number of 1 Bits - GFG ├── README.md └── number-of-1-bits.java ├── Number of Good Components - GFG ├── README.md └── number-of-good-components.java ├── Number of Good Components -GFG └── Number of Good Components.java ├── Number of Provinces - GFG ├── README.md └── number-of-provinces.java ├── Number of Subarrays of 0's - GFG ├── README.md └── number-of-subarrays-of-0s.java ├── Number of Turns in Binary Tree_gfg_s11.java ├── Number of Ways to Arrive at Destination_gfg_Dijkstras_M.java ├── Number of distinct subsequences - GFG ├── README.md ├── number-of-distinct-subsequences.cpp └── number-of-distinct-subsequences.java ├── Number of occurrence - GFG ├── README.md ├── number-of-occurrence.cpp └── number-of-occurrence.java ├── Number of paths - GFG ├── README.md ├── leetcode solution.java ├── number-of-paths.cpp └── number-of-paths.java ├── Number of paths in a matrix with k coins - GFG └── Number of paths in a matrix with k coins.java ├── Nuts and Bolts Problem - GFG └── Nuts and Bolts Problem.java ├── Odd Even Problem - GFG └── Odd Even Problem.java ├── Optimal Array - GFG ├── README.md └── optimal-array.java ├── Optimal Strategy For A Game -DP - GFG └── Optimal Strategy For A Game.java ├── Padovan Sequence - GFG └── Padovan Sequence.java ├── Pairs violating the BST property - GFG └── Pairs violating the BST property.java ├── Pairwise swap elements of a linked list - GFG ├── README.md └── pairwise-swap-elements-of-a-linked-list.cpp ├── Palindrome Linked List - GFG └── Palindrome Linked List.java ├── Palindrome Partitioning - Backtracking - Leetcode ├── Palindrome Partitioning.java └── readme.md ├── Palindrome String - GFG ├── README.md └── palindrome-string.java ├── Palindromic Partitioning - GFG ├── README.md ├── palindromic-partitioning.cpp └── palindromic-partitioning.java ├── Partition Equal Subset Sum - GFG ├── README.md ├── partition-equal-subset-sum.cpp └── partition-equal-subset-sum.java ├── Partition the Array - GFG ├── README.md └── partition-the-array.java ├── Partitions with Given Difference -GFG └── Partitions with Given Difference.java ├── Party of Couples - GFG └── Party of Couples.java ├── Pascal Triangle - GFG ├── Pascal Triangle.cpp └── Pascal Triangle.java ├── Path With Minimum Effort-GFG └── Path With Minimum Effort.java ├── Paths to reach origin - GFG └── Paths to reach origin.java ├── Perfect Numbers - GFG ├── README.md ├── perfect-numbers.cpp └── perfect-numbers.java ├── Perfect Sum Problem - GFG ├── README.md └── perfect-sum-problem.cpp ├── Phone directory - GFG ├── README.md └── phone-directory.java ├── Populate Inorder Successor for all nodes - GFG └── Populate Inorder Successor for all nodes.java ├── Possible Paths in a Tree - Disjoint Set - GFG └── Possible Paths in a Tree.java ├── Possible Words From Phone Digit ├── GFG Possible Words From Phone Digits.java ├── Leetcode Code Testcase Testcase Test Result Leet Leet Accepted 17. Letter Combinations of a Phone Number.java └── Leetcode 17. Letter Combinations of a Phone Number.java ├── Possible Words From Phone Digits └── Possible Words From Phone Digits.java ├── Power Of 2 and Subsequences_gfg_M.java ├── Power Of Numbers - GFG ├── README.md └── power-of-numbers.java ├── Power Set - GFG └── Power Set.java ├── Power of 2 - GFG ├── README.md ├── power-of-2.cpp └── power-of-2.java ├── Powerfull Integer - GFG ├── README.md └── powerfull-integer.java ├── Predecessor and Successor - GFG ├── README.md ├── predecessor-and-successor.cpp └── predecessor-and-successor.java ├── Predict the Column-GFG ├── Predict the Column.cpp └── Predict the Column.java ├── Prefix Suffix String - GFG ├── README.md └── prefix-suffix-string.java ├── Prefix match with other strings - GFG ├── README.md ├── prefix-match-with-other-strings.cpp └── prefix-match-with-other-strings.java ├── Prime List - GFG ├── README.md └── prime-list.java ├── Primes sum - GFG ├── README.md └── primes-sum.java ├── Print Matrix in snake Pattern-GFG ├── Print Matrix in snake Pattern.cpp ├── Print Matrix in snake Pattern.java └── README.md ├── Print N-bit binary numbers having more 1s than 0s - GFG └── Print N-bit binary numbers having more 1s than 0s.java ├── Print adjacency list - GFG ├── README.md ├── print-adjacency-list.cpp └── print-adjacency-list.java ├── Print all nodes that don't have sibling - GFG └── Print all nodes that don't have sibling.java ├── Print first n Fibonacci Numbers - GFG ├── README.md └── print-first-n-fibonacci-numbers.java ├── Print leaf nodes from preorder traversal of BST - GFG ├── README.md └── print-leaf-nodes-from-preorder-traversal-of-bst.java ├── Print matrix in diagonal pattern - GFG └── Print matrix in diagonal pattern.java ├── Product array puzzle -GFG └── Product array puzzle.java ├── Pythagorean Triplet - GFG ├── 03-11-2023 0134 dry run.pdf ├── Pythagorean Triplet.cpp ├── Pythagorean Triplet.java └── README.md ├── Queries on a Matrix_DP_gfg_H.java ├── Queue Operations - GFG ├── README.md ├── queue-operations.cpp └── queue-operations.java ├── Queue Reversal - GFG ├── README.md ├── queue-reversal.cpp └── queue-reversal.java ├── Quick Sort - GFG ├── README.md ├── quick-sort.cpp └── quick-sort.java ├── README.md ├── Rat in a Maze ├── Rat in a Maze.java └── Readme.md ├── Reach a given score - GFG └── Reach a given score.java ├── Rearrange Array Alternately - GFG ├── README.md └── rearrange-array-alternately.java ├── Rearrange an array with O(1) extra space - GFG ├── README.md ├── rearrange-an-array-with-o1-extra-space.cpp └── rearrange-an-array-with-o1-extra-space.java ├── Redundant Parenthesis - GFG ├── README.md ├── redundant-parenthesis.cpp └── redundant-parenthesis.java ├── Remainder on dividing by 11 - GFG ├── README.md ├── remainder-on-dividing-by-11.cpp └── remainder-on-dividing-by-11.java ├── Remove Half Nodes - GFG └── Remove Half Nodes.java ├── Remove K Digits - GFG ├── Remove K Digits.cpp └── Remove K Digits.java ├── Remove and Reverse - GFG ├── README.md ├── remove-and-reverse.cpp └── remove-and-reverse.java ├── Remove duplicate element from sorted Linked List - GFG ├── README.md └── remove-duplicate-element-from-sorted-linked-list.java ├── Remove duplicates from an unsorted linked list - GFG ├── README.md ├── remove-duplicates-from-an-unsorted-linked-list.cpp └── remove-duplicates-from-an-unsorted-linked-list.java ├── Remove the balls - GFG ├── README.md └── remove-the-balls.java ├── Remove the balls-gfg ├── README.md ├── Remove the balls.cpp └── Remove the balls.java ├── Reorder List - GFG ├── README.md └── reorder-list.java ├── Replace O's with X's - GFG ├── README.md ├── replace-os-with-xs.cpp └── replace-os-with-xs.java ├── Reverse Coding - GFG ├── README.md ├── reverse-coding.cpp └── reverse-coding.java ├── Reverse Words - GFG └── Reverse Words.java ├── Reverse a Doubly Linked List - GFG └── Reverse a Doubly Linked List.java ├── Reverse a Linked List in groups of given size - GFG ├── 25. Reverse Nodes in k-Group - Leetcode.java ├── README.md ├── reverse-a-linked-list-in-groups-of-given-size.cpp └── reverse-a-linked-list-in-groups-of-given-size.java ├── Reverse a Stack - GFG ├── README.md ├── reverse-a-stack.cpp └── reverse-a-stack.java ├── Reverse a String - GFG ├── README.md ├── Reverse a String.cpp └── reverse-a-string.java ├── Reverse a linked list - GFG ├── README.md └── reverse-a-linked-list.cpp ├── Reverse alternate nodes in Link List - GFG ├── README.md └── reverse-alternate-nodes-in-link-list.cpp ├── Reverse both parts - GFG ├── README.md └── reverse-both-parts.java ├── Reversing the equation - GFG ├── README.md └── reversing-the-equation.java ├── Right View of Binary Tree - GFG ├── README.md ├── right-view-of-binary-tree.cpp └── right-view-of-binary-tree.java ├── Rightmost different bit - GFG └── Rightmost different bit.java ├── Rod Cutting - GFG ├── README.md ├── Rod Cutting.cpp └── rod-cutting.java ├── Rohan's Love for Matrix -DP - fibonaaci └── Rohan's Love for Matrix.java ├── Roman Number to Integer - GFG ├── Leetcode 13.java ├── README.md └── roman-number-to-integer.cpp ├── Roof Top - GFG └── Roof Top.java ├── Root to Leaf Paths - GFG └── Root to Leaf Paths.java ├── Rotate Bits - GFG ├── README.md ├── rotate-bits.cpp └── rotate-bits.java ├── Rotate Deque By K ├── Readme.md └── Rotate Deque By K.java ├── Rotate a Linked List - GFG └── Rotate a Linked List.java ├── Santa Banta - GFG ├── README.md └── santa-banta.java ├── Satisfy the equation - GFG ├── README.md └── satisfy-the-equation.java ├── Save Your Life - GFG ├── README.md └── save-your-life.java ├── SaveYourLife_kadane_gfg_M.java ├── Scrambled String - GFG ├── README.md └── scrambled-string.java ├── Seating Arrangement - GFG ├── README.md └── seating-arrangement.java ├── Second smallest number - GFG ├── README.md └── second-smallest-number.java ├── Segregate 0s and 1s - GFG └── Segregate 0s and 1s.java ├── Select Nodes - GFG ├── README.md └── select-nodes.java ├── Sequence Fun - GFG ├── README.md └── sequence-fun.java ├── Serialize and deserialize a binary tree _GFG └── Serialize and deserialize a binary tree.java ├── Set Matrix Zeros-gfg-greedy └── Set Matrix Zeros.java ├── Shortest Common Supersequence - GFG ├── Shortest Common Supersequence.cpp └── Shortest Common Supersequence.java ├── Shortest Distance in a Binary Maze - GFG ├── README.md └── shortest-distance-in-a-binary-maze.java ├── Shortest Distance in a Binary Maze_BFS_gfg_M.java ├── Shortest Path Using Atmost One Curved Edge - GFG ├── README.md ├── shortest-path-using-atmost-one-curved-edge.cpp └── shortest-path-using-atmost-one-curved-edge.java ├── Shortest Path by Removing K walls - GFG ├── README.md └── shortest-path-by-removing-k-walls.java ├── Shortest Path in Weighted undirected graph - GG+FG └── Shortest Path in Weighted undirected graph.java ├── Shortest Prime Path - GFG ├── README.md └── shortest-prime-path.java ├── Shortest Source to Destination Path - GFG ├── README.md └── shortest-source-to-destination-path.cpp ├── Shortest XY distance in Grid - GFG ├── README.md ├── shortest-xy-distance-in-grid.cpp └── shortest-xy-distance-in-grid.java ├── Shortest path in Directed Acyclic Graph - GFG ├── README.md ├── shortest-path-in-directed-acyclic-graph.cpp └── shortest-path-in-directed-acyclic-graph.java ├── Shreyansh and his bits - GFG ├── README.md └── shreyansh-and-his-bits.java ├── Shuffle integers-GFG ├── Shuffle integers.cpp └── Shuffle integers.java ├── Shy Geek - GFG ├── README.md └── shy-geek.java ├── Single valued subtree - GFG ├── README.md └── single-valued-subtree.java ├── Smaller Sum - GFG ├── README.md └── smaller-sum.java ├── Smallest Divisor-gfg ├── README.md └── Smallest Divisor.java ├── Smallest Positive missing number - GFG ├── README.md ├── all_code_combined.java ├── smallest-positive-missing-number.cpp └── smallest-positive-missing-number.java ├── Smallest Subset with Greater Sum_gfg_E.java ├── Smallest number - GFG ├── README.md └── smallest-number.java ├── Smallest number on left_gfg_M.java ├── Smallest window containing 0, 1 and 2 - GFG └── Smallest window containing 0, 1 and 2.java ├── Smallest window in a string containing all the characters of another string - GFG └── Smallest window in a string containing all the characters of another string.java ├── SmallestNumberwithSumOfDigitsAsNDivisbleBY10^n_gfg_E_09_09_22.java ├── Smith Number └── Smith Number.java ├── Solve the Sudoku - GFG ├── README.md ├── solve-the-sudoku.cpp └── solve-the-sudoku.java ├── Sort an array of 0s, 1s and 2s - GFG ├── README.md └── sort-an-array-of-0s-1s-and-2s.java ├── Sort012_DutchNationalFlag_gfg_E.java ├── Sorted insert for circular linked list - GFG └── Sorted insert for circular linked list.java ├── Special Digits - GFG ├── README.md └── special-digits.java ├── Special Palindrome Substrings - GFG ├── README.md └── special-palindrome-substrings.java ├── Split Array Largest Sum - GFG ├── README.md └── split-array-largest-sum.java ├── Stepping Numbers - GFG ├── README.md └── stepping-numbers.java ├── Stepping Numbers_BFS_gfg_M.java ├── Stickler Thief - GFG ├── README.md ├── stickler-thief.cpp └── stickler-thief.java ├── Stock buy and sell II - GFG ├── README.md ├── stock-buy-and-sell-ii.cpp └── stock-buy-and-sell-ii.java ├── Strictly Increasing Array - LIS-GFG └── Strictly Increasing Array.java ├── String Mirror - GFG ├── README.md └── string-mirror.java ├── String Permutations - GFG ├── README.md └── string-permutations.java ├── String Subsequence -GFG └── String Subsequence.java ├── String rp or pr - GFG ├── README.md ├── string-rp-or-pr.cpp └── string-rp-or-pr.java ├── Subarray with 0 sum └── Subarray with 0 sum.java ├── Subarray with given sum - GFG ├── README.md ├── subarray-with-given-sum.cpp └── subarray-with-given-sum.java ├── Substrings of length k with k-1 distinct elements_slidingWindow_gfg_M.java ├── Subtraction in Linked List - GFG ├── LeetCode 445. Add Two Numbers II.java └── Subtraction in Linked List.java ├── Subtree In N-ary Tree - GFG ├── README.md ├── Subtree In N-ary Tree.cpp └── subtree-in-nary-tree.java ├── Sum Pair closest to target - Two poimters └── Sum Pair closest to target.java ├── Sum of Beauty of All Substrings - GFG ├── README.md └── sum-of-beauty-of-all-substrings.java ├── Sum of Products- Bitwise - GFG └── Sum of Products.java ├── Sum of XOR of all pairs - GFG ├── README.md ├── sum-of-xor-of-all-pairs.cpp └── sum-of-xor-of-all-pairs.java ├── Sum of all divisors from 1 to n - GFG ├── README.md └── sum-of-all-divisors-from-1-to-n.java ├── Sum of bit differences - GFG └── Sum of bit differences.java ├── Sum of nodes on the longest path from root to leaf node -GFG └── Sum of nodes on the longest path from root to leaf node.java ├── Sum of upper and lower triangles- GFG ├── README.md ├── Sum of upper and lower triangles.cpp └── Sum of upper and lower triangles.java ├── Surround the 1's - GFG ├── README.md ├── surround-the-1s.cpp └── surround-the-1s.java ├── Swap two nibbles in a byte - GFG └── Swap two nibbles in a byte.java ├── Swapping pairs make sum equal - GFG └── Swapping pairs make sum equal.java ├── Symmetric Tree - GFG ├── Symmetric Tree.cpp └── Symmetric Tree.java ├── Task Scheduler - GFG ├── README.md ├── task-scheduler.cpp └── task-scheduler.java ├── Taxi Booking - GFG ├── README.md ├── taxi-booking.cpp └── taxi-booking.java ├── The Bit Game_gfg_E.java ├── The Knight's tour problem ├── Leetcode - 2596. Check Knight Tour Configuration.java ├── Readme.md ├── The Knight's tour problem.java └── The Knight's tour problemv2.java ├── The Smurfs - GFG ├── README.md └── the-smurfs.java ├── Ticket Counter - GFG ├── README.md ├── ticket-counter.cpp └── ticket-counter.java ├── Top K Frequent Elements in Array -GFG ├── README.md ├── Top K Frequent Elements in Array .cpp └── Top K Frequent Elements in Array.java ├── Topological sort - GFG ├── README.md ├── topological-sort.cpp └── topological-sort.java ├── Total Cuts - GFG ├── README.md └── total-cuts.java ├── Total Decoding Messages - GFG ├── README.md └── total-decoding-messages.java ├── Transform to Sum Tree - GFG ├── README.md └── transform-to-sum-tree.java ├── Transitive closure of a Graph - GFG ├── README.md ├── transitive-closure-of-a-graph.cpp └── transitive-closure-of-a-graph.java ├── Transpose of Matrix - GFG ├── README.md ├── transpose-of-matrix.cpp └── transpose-of-matrix.java ├── Tree Transformation - GFG ├── README.md └── tree-transformation.java ├── Two Repeated Elements_GFG └── Two Repeated Elements.java ├── Two numbers with odd occurrences - GFG ├── Missing And Repeating.java ├── README.md └── two-numbers-with-odd-occurrences.java ├── Type it! - GFG ├── README.md └── type-it.java ├── Unequal Arrays - GFG ├── README.md └── unequal-arrays.java ├── Union of Two Linked Lists - GFG ├── README.md ├── union-of-two-linked-lists.cpp └── union-of-two-linked-lists.java ├── Union of Two Sorted Arrays - GFG └── Union of Two Sorted Arrays.java ├── Union of two arrays - GFG ├── README.md └── union-of-two-arrays.java ├── Unique K-Number Sum ├── Readme.md └── Unique K-Number Sum.java ├── Unique Number of Occurrences - GFG ├── README.md ├── unique-number-of-occurrences.cpp └── unique-number-of-occurrences.java ├── Unique Paths in a Grid - GFG ├── README.md └── unique-paths-in-a-grid.java ├── Unique partitions - GFG ├── README.md └── unique-partitions.java ├── Unique rows in boolean matrix - GFG ├── README.md ├── unique-rows-in-boolean-matrix.cpp └── unique-rows-in-boolean-matrix.java ├── Unit Area of largest region of 1's_gfg_s14,java ├── Update Queries - GFG ├── README.md └── update-queries.java ├── Valid Compressed String - GFG ├── README.md └── valid-compressed-string.java ├── Vertical sum - GFG └── Vertical sum.java ├── Walls Coloring - GFG ├── README.md └── walls-coloring.java ├── Walls Coloring II - GFG ├── README.md └── walls-coloring-ii.java ├── Wave Array - GFG ├── README.md ├── wave-array.cpp └── wave-array.java ├── Wifi Range - GFG ├── README.md └── wifi-range.java ├── Wine Buying and Selling - GFG ├── README.md └── wine-buying-and-selling.java ├── Word Break - GFG └── Word Break.java ├── Word Search - GFG ├── README.md └── word-search.java ├── Yet another query problem - GFG ├── README.md └── yet-another-query-problem.java ├── Zero Sum Subarrays - GFG ├── README.md └── zero-sum-subarrays.java ├── ZigZag Tree Traversal - GFG ├── Readme.md ├── ZigZag Tree Traversal.cpp └── ZigZag Tree Traversal.java ├── cimpress questions └── file.java ├── combine pdf.pdf ├── find all elements that appear more than NbyK time - LeetCode ├── 229. Majority Element II.java ├── GFG.java └── Leetcode 169. Majority Element.java ├── k largest elements - GFG ├── README.md ├── k-largest-elements.cpp └── k-largest-elements.java ├── k-th smallest element in BST - GFG ├── README.md └── kth-smallest-element-in-bst.java ├── nCr - GFG ├── README.md ├── n-cr.cpp └── n-cr.java ├── readme.md └── stats.json /0001-two-sum/0001-two-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0001-two-sum/0001-two-sum.cpp -------------------------------------------------------------------------------- /0001-two-sum/0001-two-sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0001-two-sum/0001-two-sum.java -------------------------------------------------------------------------------- /0001-two-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0001-two-sum/README.md -------------------------------------------------------------------------------- /0015-3sum/0015-3sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0015-3sum/0015-3sum.cpp -------------------------------------------------------------------------------- /0015-3sum/0015-3sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0015-3sum/0015-3sum.java -------------------------------------------------------------------------------- /0015-3sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0015-3sum/README.md -------------------------------------------------------------------------------- /0019-remove-nth-node-from-end-of-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0019-remove-nth-node-from-end-of-list/README.md -------------------------------------------------------------------------------- /0021-merge-two-sorted-lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0021-merge-two-sorted-lists/README.md -------------------------------------------------------------------------------- /0023-merge-k-sorted-lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0023-merge-k-sorted-lists/README.md -------------------------------------------------------------------------------- /0031-next-permutation/0031-next-permutation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0031-next-permutation/0031-next-permutation.java -------------------------------------------------------------------------------- /0031-next-permutation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0031-next-permutation/README.md -------------------------------------------------------------------------------- /0033-search-in-rotated-sorted-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0033-search-in-rotated-sorted-array/README.md -------------------------------------------------------------------------------- /0048-rotate-image/0048-rotate-image.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0048-rotate-image/0048-rotate-image.java -------------------------------------------------------------------------------- /0048-rotate-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0048-rotate-image/README.md -------------------------------------------------------------------------------- /0049-group-anagrams/0049-group-anagrams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0049-group-anagrams/0049-group-anagrams.java -------------------------------------------------------------------------------- /0049-group-anagrams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0049-group-anagrams/README.md -------------------------------------------------------------------------------- /0054-spiral-matrix/0054-spiral-matrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0054-spiral-matrix/0054-spiral-matrix.java -------------------------------------------------------------------------------- /0054-spiral-matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0054-spiral-matrix/README.md -------------------------------------------------------------------------------- /0131-palindrome-partitioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0131-palindrome-partitioning/README.md -------------------------------------------------------------------------------- /0169-majority-element/0169-majority-element.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0169-majority-element/0169-majority-element.java -------------------------------------------------------------------------------- /0169-majority-element/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0169-majority-element/README.md -------------------------------------------------------------------------------- /0239-sliding-window-maximum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0239-sliding-window-maximum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0239-sliding-window-maximum/README.md -------------------------------------------------------------------------------- /0394-decode-string/0394-decode-string.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0394-decode-string/0394-decode-string.java -------------------------------------------------------------------------------- /0394-decode-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0394-decode-string/README.md -------------------------------------------------------------------------------- /0692-top-k-frequent-words/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /0692-top-k-frequent-words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/0692-top-k-frequent-words/README.md -------------------------------------------------------------------------------- /1-two-sum/1-two-sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/1-two-sum/1-two-sum.java -------------------------------------------------------------------------------- /1-two-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1-two-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/1-two-sum/README.md -------------------------------------------------------------------------------- /1000. Minimum Cost to Merge Stones/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/1000. Minimum Cost to Merge Stones/Readme.md -------------------------------------------------------------------------------- /1008-construct-binary-search-tree-from-preorder-traversal/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1011-capacity-to-ship-packages-within-d-days/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /102-binary-tree-level-order-traversal/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /102-binary-tree-level-order-traversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/102-binary-tree-level-order-traversal/README.md -------------------------------------------------------------------------------- /103-binary-tree-zigzag-level-order-traversal/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /112-path-sum/112-path-sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/112-path-sum/112-path-sum.java -------------------------------------------------------------------------------- /112-path-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /112-path-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/112-path-sum/README.md -------------------------------------------------------------------------------- /113-path-sum-ii/113-path-sum-ii.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/113-path-sum-ii/113-path-sum-ii.java -------------------------------------------------------------------------------- /113-path-sum-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /113-path-sum-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/113-path-sum-ii/README.md -------------------------------------------------------------------------------- /121-best-time-to-buy-and-sell-stock/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /121-best-time-to-buy-and-sell-stock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/121-best-time-to-buy-and-sell-stock/README.md -------------------------------------------------------------------------------- /124. Binary Tree Maximum Path Sum/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/124. Binary Tree Maximum Path Sum/Readme.md -------------------------------------------------------------------------------- /133-clone-graph/133-clone-graph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/133-clone-graph/133-clone-graph.java -------------------------------------------------------------------------------- /133-clone-graph/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /133-clone-graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/133-clone-graph/README.md -------------------------------------------------------------------------------- /136-single-number/136-single-number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/136-single-number/136-single-number.java -------------------------------------------------------------------------------- /136-single-number/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /136-single-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/136-single-number/README.md -------------------------------------------------------------------------------- /137-single-number-ii/137-single-number-ii.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/137-single-number-ii/137-single-number-ii.java -------------------------------------------------------------------------------- /137-single-number-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /137-single-number-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/137-single-number-ii/README.md -------------------------------------------------------------------------------- /1436. Destination City/1436. Destination City.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/1436. Destination City/1436. Destination City.cpp -------------------------------------------------------------------------------- /15-3sum/15-3sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/15-3sum/15-3sum.java -------------------------------------------------------------------------------- /15-3sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /15-3sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/15-3sum/README.md -------------------------------------------------------------------------------- /1662-check-if-two-string-arrays-are-equivalent/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /169-majority-element/169-majority-element.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/169-majority-element/169-majority-element.java -------------------------------------------------------------------------------- /169-majority-element/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1734-decode-xored-permutation/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /1734-decode-xored-permutation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/1734-decode-xored-permutation/README.md -------------------------------------------------------------------------------- /19-remove-nth-node-from-end-of-list/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /19-remove-nth-node-from-end-of-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/19-remove-nth-node-from-end-of-list/README.md -------------------------------------------------------------------------------- /199-binary-tree-right-side-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/199-binary-tree-right-side-view/README.md -------------------------------------------------------------------------------- /20-valid-parentheses/20-valid-parentheses.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/20-valid-parentheses/20-valid-parentheses.java -------------------------------------------------------------------------------- /20-valid-parentheses/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /20-valid-parentheses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/20-valid-parentheses/README.md -------------------------------------------------------------------------------- /201-bitwise-and-of-numbers-range/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /201-bitwise-and-of-numbers-range/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/201-bitwise-and-of-numbers-range/README.md -------------------------------------------------------------------------------- /204.Count Primes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/204.Count Primes.java -------------------------------------------------------------------------------- /207-course-schedule/207-course-schedule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/207-course-schedule/207-course-schedule.java -------------------------------------------------------------------------------- /207-course-schedule/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /207-course-schedule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/207-course-schedule/README.md -------------------------------------------------------------------------------- /209-minimum-size-subarray-sum/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /209-minimum-size-subarray-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/209-minimum-size-subarray-sum/README.md -------------------------------------------------------------------------------- /210-course-schedule-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /210-course-schedule-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/210-course-schedule-ii/README.md -------------------------------------------------------------------------------- /210. Course Schedule II/Course Schedule II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/210. Course Schedule II/Course Schedule II.cpp -------------------------------------------------------------------------------- /210. Course Schedule II/Course Schedule II.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/210. Course Schedule II/Course Schedule II.java -------------------------------------------------------------------------------- /210. Course Schedule II/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/210. Course Schedule II/Readme.md -------------------------------------------------------------------------------- /215-kth-largest-element-in-an-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /215-kth-largest-element-in-an-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/215-kth-largest-element-in-an-array/README.md -------------------------------------------------------------------------------- /218-the-skyline-problem/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /218-the-skyline-problem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/218-the-skyline-problem/README.md -------------------------------------------------------------------------------- /22-generate-parentheses/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /22-generate-parentheses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/22-generate-parentheses/README.md -------------------------------------------------------------------------------- /230. Kth Smallest Element in a BST/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/230. Kth Smallest Element in a BST/Readme.md -------------------------------------------------------------------------------- /236-lowest-common-ancestor-of-a-binary-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /2608. Shortest Cycle in a Graph/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/2608. Shortest Cycle in a Graph/Readme.md -------------------------------------------------------------------------------- /2D Hopscotch - GFG/2d-hopscotch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/2D Hopscotch - GFG/2d-hopscotch.java -------------------------------------------------------------------------------- /2D Hopscotch - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/2D Hopscotch - GFG/README.md -------------------------------------------------------------------------------- /3 Divisors - GFG/3-divisors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/3 Divisors - GFG/3-divisors.java -------------------------------------------------------------------------------- /3 Divisors - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/3 Divisors - GFG/README.md -------------------------------------------------------------------------------- /303-range-sum-query-immutable/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /303-range-sum-query-immutable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/303-range-sum-query-immutable/README.md -------------------------------------------------------------------------------- /31-next-permutation/31-next-permutation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/31-next-permutation/31-next-permutation.java -------------------------------------------------------------------------------- /31-next-permutation/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /31-next-permutation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/31-next-permutation/README.md -------------------------------------------------------------------------------- /33-search-in-rotated-sorted-array/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /338-counting-bits/338-counting-bits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/338-counting-bits/338-counting-bits.java -------------------------------------------------------------------------------- /338-counting-bits/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/338-counting-bits/NOTES.md -------------------------------------------------------------------------------- /338-counting-bits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/338-counting-bits/README.md -------------------------------------------------------------------------------- /347-top-k-frequent-elements/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /347-top-k-frequent-elements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/347-top-k-frequent-elements/README.md -------------------------------------------------------------------------------- /399-evaluate-division/399-evaluate-division.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/399-evaluate-division/399-evaluate-division.java -------------------------------------------------------------------------------- /399-evaluate-division/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /399-evaluate-division/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/399-evaluate-division/README.md -------------------------------------------------------------------------------- /4-median-of-two-sorted-arrays/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /4-median-of-two-sorted-arrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/4-median-of-two-sorted-arrays/README.md -------------------------------------------------------------------------------- /42-trapping-rain-water/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /42-trapping-rain-water/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/42-trapping-rain-water/README.md -------------------------------------------------------------------------------- /44. Wildcard Matching/44. Wildcard Matching.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/44. Wildcard Matching/44. Wildcard Matching.java -------------------------------------------------------------------------------- /44. Wildcard Matching/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/44. Wildcard Matching/Readme.md -------------------------------------------------------------------------------- /46-permutations/46-permutations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/46-permutations/46-permutations.java -------------------------------------------------------------------------------- /46-permutations/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /46-permutations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/46-permutations/README.md -------------------------------------------------------------------------------- /461-hamming-distance/461-hamming-distance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/461-hamming-distance/461-hamming-distance.java -------------------------------------------------------------------------------- /461-hamming-distance/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/461-hamming-distance/NOTES.md -------------------------------------------------------------------------------- /461-hamming-distance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/461-hamming-distance/README.md -------------------------------------------------------------------------------- /494. Target Sum - Leetcode/494. Target Sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/494. Target Sum - Leetcode/494. Target Sum.java -------------------------------------------------------------------------------- /51-n-queens/51-n-queens.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/51-n-queens/51-n-queens.java -------------------------------------------------------------------------------- /51-n-queens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/51-n-queens/README.md -------------------------------------------------------------------------------- /52-n-queens-ii/52-n-queens-ii.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/52-n-queens-ii/52-n-queens-ii.java -------------------------------------------------------------------------------- /52-n-queens-ii/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /52-n-queens-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/52-n-queens-ii/README.md -------------------------------------------------------------------------------- /53-maximum-subarray/53-maximum-subarray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/53-maximum-subarray/53-maximum-subarray.java -------------------------------------------------------------------------------- /53-maximum-subarray/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /53-maximum-subarray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/53-maximum-subarray/README.md -------------------------------------------------------------------------------- /54-spiral-matrix/54-spiral-matrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/54-spiral-matrix/54-spiral-matrix.java -------------------------------------------------------------------------------- /54-spiral-matrix/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /54-spiral-matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/54-spiral-matrix/README.md -------------------------------------------------------------------------------- /542. 01 Matrix/542. 01 Matrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/542. 01 Matrix/542. 01 Matrix.java -------------------------------------------------------------------------------- /622-design-circular-queue/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /622-design-circular-queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/622-design-circular-queue/README.md -------------------------------------------------------------------------------- /623-add-one-row-to-tree/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /623-add-one-row-to-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/623-add-one-row-to-tree/README.md -------------------------------------------------------------------------------- /658-find-k-closest-elements/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /658-find-k-closest-elements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/658-find-k-closest-elements/README.md -------------------------------------------------------------------------------- /669. Trim a Binary Search Tree/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/669. Trim a Binary Search Tree/Readme.md -------------------------------------------------------------------------------- /706-design-hashmap/706-design-hashmap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/706-design-hashmap/706-design-hashmap.java -------------------------------------------------------------------------------- /706-design-hashmap/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /706-design-hashmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/706-design-hashmap/README.md -------------------------------------------------------------------------------- /75-sort-colors/75-sort-colors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/75-sort-colors/75-sort-colors.java -------------------------------------------------------------------------------- /75-sort-colors/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /75-sort-colors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/75-sort-colors/README.md -------------------------------------------------------------------------------- /79-word-search/79-word-search.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/79-word-search/79-word-search.java -------------------------------------------------------------------------------- /79-word-search/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /79-word-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/79-word-search/README.md -------------------------------------------------------------------------------- /797-all-paths-from-source-to-target/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /797-all-paths-from-source-to-target/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/797-all-paths-from-source-to-target/README.md -------------------------------------------------------------------------------- /828-count-unique-characters-of-all-substrings-of-a-given-string/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /838-push-dominoes/838-push-dominoes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/838-push-dominoes/838-push-dominoes.java -------------------------------------------------------------------------------- /838-push-dominoes/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /838-push-dominoes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/838-push-dominoes/README.md -------------------------------------------------------------------------------- /862-shortest-subarray-with-sum-at-least-k/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /907-sum-of-subarray-minimums/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /907-sum-of-subarray-minimums/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/907-sum-of-subarray-minimums/README.md -------------------------------------------------------------------------------- /959-regions-cut-by-slashes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/959-regions-cut-by-slashes/README.md -------------------------------------------------------------------------------- /96-unique-binary-search-trees/NOTES.md: -------------------------------------------------------------------------------- 1 | ​ -------------------------------------------------------------------------------- /96-unique-binary-search-trees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/96-unique-binary-search-trees/README.md -------------------------------------------------------------------------------- /97. Interleaving String/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/97. Interleaving String/readme.md -------------------------------------------------------------------------------- /979. Distribute Coins in Binary Tree/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/979. Distribute Coins in Binary Tree/Readme.md -------------------------------------------------------------------------------- /A Game of LCM - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/A Game of LCM - GFG/README.md -------------------------------------------------------------------------------- /A Game of LCM - GFG/a-game-of-lcm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/A Game of LCM - GFG/a-game-of-lcm.java -------------------------------------------------------------------------------- /AVL Tree Deletion - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/AVL Tree Deletion - GFG/README.md -------------------------------------------------------------------------------- /AVL Tree Deletion - GFG/avl-tree-deletion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/AVL Tree Deletion - GFG/avl-tree-deletion.cpp -------------------------------------------------------------------------------- /Absolute List Sorting - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Absolute List Sorting - GFG/README.md -------------------------------------------------------------------------------- /Add Binary Strings - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Add Binary Strings - GFG/README.md -------------------------------------------------------------------------------- /Add Binary Strings - GFG/add-binary-strings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Add Binary Strings - GFG/add-binary-strings.java -------------------------------------------------------------------------------- /Add Minimum Characters - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Add Minimum Characters - GFG/README.md -------------------------------------------------------------------------------- /Adding Ones - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Adding Ones - GFG/README.md -------------------------------------------------------------------------------- /Adding Ones - GFG/adding-ones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Adding Ones - GFG/adding-ones.cpp -------------------------------------------------------------------------------- /Adding Ones - GFG/adding-ones.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Adding Ones - GFG/adding-ones.java -------------------------------------------------------------------------------- /Aggressive Cows - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Aggressive Cows - GFG/README.md -------------------------------------------------------------------------------- /Aggressive Cows - GFG/aggressive-cows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Aggressive Cows - GFG/aggressive-cows.java -------------------------------------------------------------------------------- /Akku and Binary Numbers - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Akku and Binary Numbers - GFG/README.md -------------------------------------------------------------------------------- /Alex Travelling - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Alex Travelling - GFG/README.md -------------------------------------------------------------------------------- /Alex Travelling - GFG/alex-travelling.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Alex Travelling - GFG/alex-travelling.java -------------------------------------------------------------------------------- /All Unique Permutations of an array/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/All Unique Permutations of an array/Readme.md -------------------------------------------------------------------------------- /Apple Sequences - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Apple Sequences - GFG/README.md -------------------------------------------------------------------------------- /Apple Sequences - GFG/apple-sequences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Apple Sequences - GFG/apple-sequences.java -------------------------------------------------------------------------------- /Arithmetic Number - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Arithmetic Number - GFG/README.md -------------------------------------------------------------------------------- /Arithmetic Number - GFG/arithmetic-number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Arithmetic Number - GFG/arithmetic-number.java -------------------------------------------------------------------------------- /Arranging the array - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Arranging the array - GFG/README.md -------------------------------------------------------------------------------- /Arranging the array - GFG/arranging-the-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Arranging the array - GFG/arranging-the-array.cpp -------------------------------------------------------------------------------- /Array Removals - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Array Removals - GFG/README.md -------------------------------------------------------------------------------- /Array Removals - GFG/array-removals.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Array Removals - GFG/array-removals.java -------------------------------------------------------------------------------- /Articulation Point - I - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Articulation Point - I - GFG/README.md -------------------------------------------------------------------------------- /Asteroid Collision - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Asteroid Collision - GFG/README.md -------------------------------------------------------------------------------- /Asteroid Collision - GFG/asteroid-collision.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Asteroid Collision - GFG/asteroid-collision.java -------------------------------------------------------------------------------- /Avoid Explosion - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Avoid Explosion - GFG/README.md -------------------------------------------------------------------------------- /Avoid Explosion - GFG/avoid-explosion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Avoid Explosion - GFG/avoid-explosion.java -------------------------------------------------------------------------------- /BFS of graph - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/BFS of graph - GFG/README.md -------------------------------------------------------------------------------- /BFS of graph - GFG/bfs-of-graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/BFS of graph - GFG/bfs-of-graph.cpp -------------------------------------------------------------------------------- /BFS of graph - GFG/bfs-of-graph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/BFS of graph - GFG/bfs-of-graph.java -------------------------------------------------------------------------------- /BST Downward Traversal - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/BST Downward Traversal - GFG/README.md -------------------------------------------------------------------------------- /BST Maximum Difference - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/BST Maximum Difference - GFG/README.md -------------------------------------------------------------------------------- /BST to max heap_gfg_M.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/BST to max heap_gfg_M.java -------------------------------------------------------------------------------- /Balanced string - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Balanced string - GFG/README.md -------------------------------------------------------------------------------- /Balanced string - GFG/balanced-string.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Balanced string - GFG/balanced-string.java -------------------------------------------------------------------------------- /Balloon Everywhere - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Balloon Everywhere - GFG/README.md -------------------------------------------------------------------------------- /Balloon Everywhere - GFG/balloon-everywhere.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Balloon Everywhere - GFG/balloon-everywhere.java -------------------------------------------------------------------------------- /Base Equivalence - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Base Equivalence - GFG/README.md -------------------------------------------------------------------------------- /Base Equivalence - GFG/base-equivalence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Base Equivalence - GFG/base-equivalence.java -------------------------------------------------------------------------------- /Best Node - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Best Node - GFG/README.md -------------------------------------------------------------------------------- /Best Node - GFG/best-node.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Best Node - GFG/best-node.java -------------------------------------------------------------------------------- /Better String-GFG/Better String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Better String-GFG/Better String.cpp -------------------------------------------------------------------------------- /Better String-GFG/Better String.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Better String-GFG/Better String.java -------------------------------------------------------------------------------- /Bheem Wants Ladoos - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Bheem Wants Ladoos - GFG/README.md -------------------------------------------------------------------------------- /Bheem Wants Ladoos - GFG/bheem-wants-ladoos.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Bheem Wants Ladoos - GFG/bheem-wants-ladoos.java -------------------------------------------------------------------------------- /Binary Modulo - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Binary Modulo - GFG/README.md -------------------------------------------------------------------------------- /Binary Modulo - GFG/binary-modulo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Binary Modulo - GFG/binary-modulo.java -------------------------------------------------------------------------------- /Binary Tree from Inorder and Postorder/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Binary Tree from Inorder and Postorder/Readme.md -------------------------------------------------------------------------------- /Binary Tree to BST - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Binary Tree to BST - GFG/README.md -------------------------------------------------------------------------------- /Binary Tree to BST - GFG/binary-tree-to-bst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Binary Tree to BST - GFG/binary-tree-to-bst.cpp -------------------------------------------------------------------------------- /Binary Tree to CDLL- GFG/Binary Tree to CDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Binary Tree to CDLL- GFG/Binary Tree to CDLL.cpp -------------------------------------------------------------------------------- /Binary Tree to CDLL- GFG/Binary Tree to CDLL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Binary Tree to CDLL- GFG/Binary Tree to CDLL.java -------------------------------------------------------------------------------- /Binary Tree to DLL - GFG/Binary Tree to DLL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Binary Tree to DLL - GFG/Binary Tree to DLL.java -------------------------------------------------------------------------------- /Bit Magic - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Bit Magic - GFG/README.md -------------------------------------------------------------------------------- /Bit Magic - GFG/bit-magic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Bit Magic - GFG/bit-magic.java -------------------------------------------------------------------------------- /Black and White - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Black and White - GFG/README.md -------------------------------------------------------------------------------- /Black and White - GFG/black-and-white.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Black and White - GFG/black-and-white.java -------------------------------------------------------------------------------- /Bleak Numbers - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Bleak Numbers - GFG/README.md -------------------------------------------------------------------------------- /Bleak Numbers - GFG/bleak-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Bleak Numbers - GFG/bleak-numbers.cpp -------------------------------------------------------------------------------- /Bleak Numbers - GFG/bleak-numbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Bleak Numbers - GFG/bleak-numbers.java -------------------------------------------------------------------------------- /Boolean Matrix - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Boolean Matrix - GFG/README.md -------------------------------------------------------------------------------- /Boolean Matrix - GFG/boolean-matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Boolean Matrix - GFG/boolean-matrix.cpp -------------------------------------------------------------------------------- /Boolean Matrix - GFG/boolean-matrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Boolean Matrix - GFG/boolean-matrix.java -------------------------------------------------------------------------------- /Bottom View of Binary Tree/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Bottom View of Binary Tree/Readme.md -------------------------------------------------------------------------------- /Break a number - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Break a number - GFG/README.md -------------------------------------------------------------------------------- /Break a number - GFG/break-a-number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Break a number - GFG/break-a-number.java -------------------------------------------------------------------------------- /Bridges in Graph - GFG/Bridges in Graph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Bridges in Graph - GFG/Bridges in Graph.java -------------------------------------------------------------------------------- /Build the smallest - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Build the smallest - GFG/README.md -------------------------------------------------------------------------------- /Build the smallest - GFG/build-the-smallest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Build the smallest - GFG/build-the-smallest.java -------------------------------------------------------------------------------- /Burst Balloons - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Burst Balloons - GFG/README.md -------------------------------------------------------------------------------- /Burst Balloons - GFG/burst-balloons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Burst Balloons - GFG/burst-balloons.java -------------------------------------------------------------------------------- /Bus Conductor - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Bus Conductor - GFG/README.md -------------------------------------------------------------------------------- /Bus Conductor - GFG/bus-conductor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Bus Conductor - GFG/bus-conductor.java -------------------------------------------------------------------------------- /Cake Distribution Problem - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Cake Distribution Problem - GFG/README.md -------------------------------------------------------------------------------- /CamelCase Pattern Matching - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/CamelCase Pattern Matching - GFG/README.md -------------------------------------------------------------------------------- /Candy - GFG/Candy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Candy - GFG/Candy.java -------------------------------------------------------------------------------- /Carpet into Box - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Carpet into Box - GFG/README.md -------------------------------------------------------------------------------- /Carpet into Box - GFG/carpet-into-box.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Carpet into Box - GFG/carpet-into-box.java -------------------------------------------------------------------------------- /Case-specific Sorting of Strings - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Case-specific Sorting of Strings - GFG/README.md -------------------------------------------------------------------------------- /Ceil in BST - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Ceil in BST - GFG/README.md -------------------------------------------------------------------------------- /Ceil in BST - GFG/ceil-in-bst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Ceil in BST - GFG/ceil-in-bst.java -------------------------------------------------------------------------------- /Check for Balanced Tree - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Check for Balanced Tree - GFG/README.md -------------------------------------------------------------------------------- /Check if Tree is Isomorphic - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Check if Tree is Isomorphic - GFG/README.md -------------------------------------------------------------------------------- /Chicks in a Zoo - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Chicks in a Zoo - GFG/README.md -------------------------------------------------------------------------------- /Chicks in a Zoo - GFG/chicks-in-a-zoo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Chicks in a Zoo - GFG/chicks-in-a-zoo.java -------------------------------------------------------------------------------- /Chocolate Distribution Problem - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Chocolate Distribution Problem - GFG/README.md -------------------------------------------------------------------------------- /Chocolate Pickup II/1463. Cherry Pickup II.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Chocolate Pickup II/1463. Cherry Pickup II.java -------------------------------------------------------------------------------- /Chocolate Pickup II/Chocolate Pickup II.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Chocolate Pickup II/Chocolate Pickup II.java -------------------------------------------------------------------------------- /Chocolate Pickup II/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Chocolate Pickup II/Readme.md -------------------------------------------------------------------------------- /Clone Graph/133. Clone Graph - Leetcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Clone Graph/133. Clone Graph - Leetcode -------------------------------------------------------------------------------- /Clone Graph/Clone an Undirected Graph - GFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Clone Graph/Clone an Undirected Graph - GFG -------------------------------------------------------------------------------- /Coin Change - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Coin Change - GFG/README.md -------------------------------------------------------------------------------- /Coin Change - GFG/coin-change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Coin Change - GFG/coin-change.cpp -------------------------------------------------------------------------------- /Coin Change - GFG/coin-change.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Coin Change - GFG/coin-change.java -------------------------------------------------------------------------------- /Coin Piles - binary search - GFG/Coin Piles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Coin Piles - binary search - GFG/Coin Piles.java -------------------------------------------------------------------------------- /Coin Piles - binary search - GFG/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Coin Piles - binary search - GFG/Readme.md -------------------------------------------------------------------------------- /Combination Sum II - GFG/Combination Sum II.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Combination Sum II - GFG/Combination Sum II.java -------------------------------------------------------------------------------- /Complement - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Complement - GFG/README.md -------------------------------------------------------------------------------- /Complement - GFG/complement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Complement - GFG/complement.java -------------------------------------------------------------------------------- /Connect Nodes at Same Level - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Connect Nodes at Same Level - GFG/README.md -------------------------------------------------------------------------------- /Construct a Full Binary Tree - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Construct a Full Binary Tree - GFG/README.md -------------------------------------------------------------------------------- /Container With Most Water - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Container With Most Water - GFG/README.md -------------------------------------------------------------------------------- /Convert an array to reduced form - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Convert an array to reduced form - GFG/README.md -------------------------------------------------------------------------------- /Copy Set Bits in Range - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Copy Set Bits in Range - GFG/README.md -------------------------------------------------------------------------------- /Count Cyclic Paths - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Count Cyclic Paths - GFG/README.md -------------------------------------------------------------------------------- /Count Cyclic Paths - GFG/count-cyclic-paths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Count Cyclic Paths - GFG/count-cyclic-paths.java -------------------------------------------------------------------------------- /Count Lucky Permutations - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Count Lucky Permutations - GFG/README.md -------------------------------------------------------------------------------- /Count Special Numbers - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Count Special Numbers - GFG/README.md -------------------------------------------------------------------------------- /Count Total Setbits - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Count Total Setbits - GFG/README.md -------------------------------------------------------------------------------- /Count even length - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Count even length - GFG/README.md -------------------------------------------------------------------------------- /Count even length - GFG/count-even-length.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Count even length - GFG/count-even-length.java -------------------------------------------------------------------------------- /Count number of free cell - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Count number of free cell - GFG/README.md -------------------------------------------------------------------------------- /Count number of hops - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Count number of hops - GFG/README.md -------------------------------------------------------------------------------- /Count number of substrings - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Count number of substrings - GFG/README.md -------------------------------------------------------------------------------- /Count of Subarrays - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Count of Subarrays - GFG/README.md -------------------------------------------------------------------------------- /Count of Subarrays - GFG/count-of-subarrays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Count of Subarrays - GFG/count-of-subarrays.java -------------------------------------------------------------------------------- /Count the Substrings - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Count the Substrings - GFG/README.md -------------------------------------------------------------------------------- /Count the elements -GFG/Count the elements.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Count the elements -GFG/Count the elements.java -------------------------------------------------------------------------------- /Counting elements in two arrays_e_gfg_21.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Counting elements in two arrays_e_gfg_21.java -------------------------------------------------------------------------------- /Cutting Binary String - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Cutting Binary String - GFG/README.md -------------------------------------------------------------------------------- /Cutting Rectangles - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Cutting Rectangles - GFG/README.md -------------------------------------------------------------------------------- /Cutting Rectangles - GFG/cutting-rectangles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Cutting Rectangles - GFG/cutting-rectangles.java -------------------------------------------------------------------------------- /Cyclically rotate an array by one - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Cyclically rotate an array by one - GFG/README.md -------------------------------------------------------------------------------- /DFS of Graph - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/DFS of Graph - GFG/README.md -------------------------------------------------------------------------------- /DFS of Graph - GFG/dfs-of-graph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/DFS of Graph - GFG/dfs-of-graph.java -------------------------------------------------------------------------------- /Day1_04_06_22 TimeComplexity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Day1_04_06_22 TimeComplexity.pdf -------------------------------------------------------------------------------- /Day2_05_06_22 Bit_Manipulation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Day2_05_06_22 Bit_Manipulation.pdf -------------------------------------------------------------------------------- /Day3W2_11_06_22 Mathematics .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Day3W2_11_06_22 Mathematics .pdf -------------------------------------------------------------------------------- /Day4W2_12_06_22_Arrays (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Day4W2_12_06_22_Arrays (1).pdf -------------------------------------------------------------------------------- /Decode the string - GFG/Decode the string.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Decode the string - GFG/Decode the string.java -------------------------------------------------------------------------------- /Decode the string - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Decode the string - GFG/README.md -------------------------------------------------------------------------------- /Decode the string - GFG/decode-the-string.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Decode the string - GFG/decode-the-string.java -------------------------------------------------------------------------------- /Decode the string - GFG/dry run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Decode the string - GFG/dry run.png -------------------------------------------------------------------------------- /DecodeTheSring_gfg_M.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/DecodeTheSring_gfg_M.java -------------------------------------------------------------------------------- /Delete middle element of a stack - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Delete middle element of a stack - GFG/README.md -------------------------------------------------------------------------------- /Distance of nearest cell having 1 - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Distance of nearest cell having 1 - GFG/README.md -------------------------------------------------------------------------------- /Distinct Coloring - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Distinct Coloring - GFG/README.md -------------------------------------------------------------------------------- /Distinct Coloring - GFG/distinct-coloring.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Distinct Coloring - GFG/distinct-coloring.java -------------------------------------------------------------------------------- /Distinct Difference - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Distinct Difference - GFG/README.md -------------------------------------------------------------------------------- /Divide in Incremental Groups - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Divide in Incremental Groups - GFG/README.md -------------------------------------------------------------------------------- /Divisibility tree - GFG/Divisibility tree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Divisibility tree - GFG/Divisibility tree.java -------------------------------------------------------------------------------- /Dominant Pairs - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Dominant Pairs - GFG/README.md -------------------------------------------------------------------------------- /Dominant Pairs - GFG/dominant-pairs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Dominant Pairs - GFG/dominant-pairs.java -------------------------------------------------------------------------------- /Duplicate subtree in Binary Tree - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Duplicate subtree in Binary Tree - GFG/README.md -------------------------------------------------------------------------------- /Earthquake and the Paint Shop - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Earthquake and the Paint Shop - GFG/README.md -------------------------------------------------------------------------------- /Earthquake and the Paint Shop_TreeMap_gfg_E.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Earthquake and the Paint Shop_TreeMap_gfg_E.java -------------------------------------------------------------------------------- /Enemy - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Enemy - GFG/README.md -------------------------------------------------------------------------------- /Enemy - GFG/enemy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Enemy - GFG/enemy.java -------------------------------------------------------------------------------- /Equal Left and Right Subarray Sum - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Equal Left and Right Subarray Sum - GFG/README.md -------------------------------------------------------------------------------- /Equalize the Towers - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Equalize the Towers - GFG/README.md -------------------------------------------------------------------------------- /Equilibrium Point - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Equilibrium Point - GFG/README.md -------------------------------------------------------------------------------- /Equilibrium Point - GFG/equilibrium-point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Equilibrium Point - GFG/equilibrium-point.cpp -------------------------------------------------------------------------------- /Equilibrium Point - GFG/equilibrium-point.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Equilibrium Point - GFG/equilibrium-point.java -------------------------------------------------------------------------------- /Even Swap - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Even Swap - GFG/README.md -------------------------------------------------------------------------------- /Even Swap - GFG/even-swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Even Swap - GFG/even-swap.cpp -------------------------------------------------------------------------------- /Even Swap - GFG/even-swap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Even Swap - GFG/even-swap.java -------------------------------------------------------------------------------- /Eventual Safe States - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Eventual Safe States - GFG/README.md -------------------------------------------------------------------------------- /Expression Add Operators - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Expression Add Operators - GFG/README.md -------------------------------------------------------------------------------- /Facing the sun - GFG/Facing the sun.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Facing the sun - GFG/Facing the sun.java -------------------------------------------------------------------------------- /Fact Digit Sum_gfg_s12.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Fact Digit Sum_gfg_s12.java -------------------------------------------------------------------------------- /Fill the Matrix - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Fill the Matrix - GFG/README.md -------------------------------------------------------------------------------- /Fill the Matrix - GFG/fill-the-matrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Fill the Matrix - GFG/fill-the-matrix.java -------------------------------------------------------------------------------- /Fill up buckets - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Fill up buckets - GFG/README.md -------------------------------------------------------------------------------- /Fill up buckets - GFG/fill-up-buckets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Fill up buckets - GFG/fill-up-buckets.java -------------------------------------------------------------------------------- /Filling Bucket - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Filling Bucket - GFG/README.md -------------------------------------------------------------------------------- /Filling Bucket - GFG/filling-bucket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Filling Bucket - GFG/filling-bucket.java -------------------------------------------------------------------------------- /FillingBuket_fibo_gfg_M.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/FillingBuket_fibo_gfg_M.java -------------------------------------------------------------------------------- /Find All Four Sum Numbers - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find All Four Sum Numbers - GFG/README.md -------------------------------------------------------------------------------- /Find Common Nodes in two BSTs - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find Common Nodes in two BSTs - GFG/README.md -------------------------------------------------------------------------------- /Find H-Index-with-CountSort-GFG/Find H-Index.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find H-Index-with-CountSort-GFG/Find H-Index.java -------------------------------------------------------------------------------- /Find K Smallest Sum Pairs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find K Smallest Sum Pairs/Readme.md -------------------------------------------------------------------------------- /Find Kth permutation - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find Kth permutation - GFG/README.md -------------------------------------------------------------------------------- /Find Number - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find Number - GFG/README.md -------------------------------------------------------------------------------- /Find Number - GFG/find-number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find Number - GFG/find-number.java -------------------------------------------------------------------------------- /Find Total Time Taken - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find Total Time Taken - GFG/README.md -------------------------------------------------------------------------------- /Find anagrams in linked list - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find anagrams in linked list - GFG/README.md -------------------------------------------------------------------------------- /Find first set bit - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find first set bit - GFG/README.md -------------------------------------------------------------------------------- /Find first set bit - GFG/find-first-set-bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find first set bit - GFG/find-first-set-bit.cpp -------------------------------------------------------------------------------- /Find first set bit - GFG/find-first-set-bit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find first set bit - GFG/find-first-set-bit.java -------------------------------------------------------------------------------- /Find kth element of spiral matrix - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find kth element of spiral matrix - GFG/README.md -------------------------------------------------------------------------------- /Find number of closed islands - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find number of closed islands - GFG/README.md -------------------------------------------------------------------------------- /Find patterns - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find patterns - GFG/README.md -------------------------------------------------------------------------------- /Find patterns - GFG/find-patterns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find patterns - GFG/find-patterns.java -------------------------------------------------------------------------------- /Find the Closest Element in BST - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find the Closest Element in BST - GFG/README.md -------------------------------------------------------------------------------- /Find the String- GFG/Find the String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find the String- GFG/Find the String.cpp -------------------------------------------------------------------------------- /Find the String- GFG/Find the String.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find the String- GFG/Find the String.java -------------------------------------------------------------------------------- /Find the longest string - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find the longest string - GFG/README.md -------------------------------------------------------------------------------- /Find the string in grid - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find the string in grid - GFG/README.md -------------------------------------------------------------------------------- /Find triplets with zero sum - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Find triplets with zero sum - GFG/README.md -------------------------------------------------------------------------------- /First and last occurrences of x - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/First and last occurrences of x - GFG/README.md -------------------------------------------------------------------------------- /Fitting The Array_gfg_E.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Fitting The Array_gfg_E.java -------------------------------------------------------------------------------- /Fixing Two swapped nodes of a BST - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Fixing Two swapped nodes of a BST - GFG/README.md -------------------------------------------------------------------------------- /Flattening a Linked List - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Flattening a Linked List - GFG/README.md -------------------------------------------------------------------------------- /Flip Bits - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Flip Bits - GFG/README.md -------------------------------------------------------------------------------- /Flip Bits - GFG/flip-bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Flip Bits - GFG/flip-bits.cpp -------------------------------------------------------------------------------- /Flip Bits - GFG/flip-bits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Flip Bits - GFG/flip-bits.java -------------------------------------------------------------------------------- /Floor in BST - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Floor in BST - GFG/README.md -------------------------------------------------------------------------------- /Floor in BST - GFG/floor-in-bst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Floor in BST - GFG/floor-in-bst.cpp -------------------------------------------------------------------------------- /Floor in BST - GFG/floor-in-bst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Floor in BST - GFG/floor-in-bst.java -------------------------------------------------------------------------------- /Floyd Warshall - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Floyd Warshall - GFG/README.md -------------------------------------------------------------------------------- /Floyd Warshall - GFG/floyd-warshall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Floyd Warshall - GFG/floyd-warshall.java -------------------------------------------------------------------------------- /FoldablebinaryTree_m _gfg_s19.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/FoldablebinaryTree_m _gfg_s19.java -------------------------------------------------------------------------------- /Fraction pairs with sum 1 - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Fraction pairs with sum 1 - GFG/README.md -------------------------------------------------------------------------------- /Frequency Game - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Frequency Game - GFG/README.md -------------------------------------------------------------------------------- /Frequency Game - GFG/frequency-game.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Frequency Game - GFG/frequency-game.java -------------------------------------------------------------------------------- /Friends Pairing Problem_gfg_s10.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Friends Pairing Problem_gfg_s10.java -------------------------------------------------------------------------------- /Frog Jump/Frog Jump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Frog Jump/Frog Jump.cpp -------------------------------------------------------------------------------- /Frog Jump/Frog Jump.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Frog Jump/Frog Jump.java -------------------------------------------------------------------------------- /Frog Jump/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Frog Jump/Readme.md -------------------------------------------------------------------------------- /Frogs and Jumps - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Frogs and Jumps - GFG/README.md -------------------------------------------------------------------------------- /Frogs and Jumps - GFG/frogs-and-jumps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Frogs and Jumps - GFG/frogs-and-jumps.cpp -------------------------------------------------------------------------------- /Frogs and Jumps - GFG/frogs-and-jumps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Frogs and Jumps - GFG/frogs-and-jumps.java -------------------------------------------------------------------------------- /GCD Array - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/GCD Array - GFG/README.md -------------------------------------------------------------------------------- /GCD Array - GFG/gcd-array.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/GCD Array - GFG/gcd-array.java -------------------------------------------------------------------------------- /Game Of Subsets - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Game Of Subsets - GFG/README.md -------------------------------------------------------------------------------- /Game Of Subsets - GFG/game-of-subsets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Game Of Subsets - GFG/game-of-subsets.java -------------------------------------------------------------------------------- /Game of XOR - GFG/Game of XOR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Game of XOR - GFG/Game of XOR.java -------------------------------------------------------------------------------- /Game of XOR - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Game of XOR - GFG/README.md -------------------------------------------------------------------------------- /Game with String - GFG/Game with String.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Game with String - GFG/Game with String.java -------------------------------------------------------------------------------- /Geek and Strings_TRIE_gfg_M.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Geek and Strings_TRIE_gfg_M.java -------------------------------------------------------------------------------- /Geek hates too many 1s - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Geek hates too many 1s - GFG/README.md -------------------------------------------------------------------------------- /Geek's Village and Wells - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Geek's Village and Wells - GFG/README.md -------------------------------------------------------------------------------- /Geeks And The String - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Geeks And The String - GFG/README.md -------------------------------------------------------------------------------- /Geeks Island - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Geeks Island - GFG/README.md -------------------------------------------------------------------------------- /Geeks Island - GFG/geeks-island.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Geeks Island - GFG/geeks-island.java -------------------------------------------------------------------------------- /Generate Binary Numbers/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Generate Binary Numbers/Readme.md -------------------------------------------------------------------------------- /Generate IP Addresses_e_gfg_s20.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Generate IP Addresses_e_gfg_s20.java -------------------------------------------------------------------------------- /Get Minimum Squares/279. Perfect Squares.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Get Minimum Squares/279. Perfect Squares.java -------------------------------------------------------------------------------- /Get Minimum Squares/Get Minimum Squares.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Get Minimum Squares/Get Minimum Squares.java -------------------------------------------------------------------------------- /Get Minimum Squares/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Get Minimum Squares/Readme.md -------------------------------------------------------------------------------- /Good Stones - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Good Stones - GFG/README.md -------------------------------------------------------------------------------- /Good Stones - GFG/good-stones.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Good Stones - GFG/good-stones.java -------------------------------------------------------------------------------- /Good Subtrees - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Good Subtrees - GFG/README.md -------------------------------------------------------------------------------- /Good Subtrees - GFG/good-subtrees.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Good Subtrees - GFG/good-subtrees.java -------------------------------------------------------------------------------- /Grouping Of Numbers - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Grouping Of Numbers - GFG/README.md -------------------------------------------------------------------------------- /Hamiltonian Path - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Hamiltonian Path - GFG/README.md -------------------------------------------------------------------------------- /Hamiltonian Path - GFG/hamiltonian-path.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Hamiltonian Path - GFG/hamiltonian-path.java -------------------------------------------------------------------------------- /Hands of Straights - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Hands of Straights - GFG/README.md -------------------------------------------------------------------------------- /Hands of Straights - GFG/hands-of-straights.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Hands of Straights - GFG/hands-of-straights.java -------------------------------------------------------------------------------- /Heap Sort - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Heap Sort - GFG/README.md -------------------------------------------------------------------------------- /Heap Sort - GFG/heap-sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Heap Sort - GFG/heap-sort.cpp -------------------------------------------------------------------------------- /Heap Sort - GFG/heap-sort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Heap Sort - GFG/heap-sort.java -------------------------------------------------------------------------------- /Height of Binary Tree - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Height of Binary Tree - GFG/README.md -------------------------------------------------------------------------------- /Implement Atoi/Implement Atoi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Implement Atoi/Implement Atoi.java -------------------------------------------------------------------------------- /Implement two stacks in an array - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Implement two stacks in an array - GFG/README.md -------------------------------------------------------------------------------- /Inorder Successor in BST - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Inorder Successor in BST - GFG/README.md -------------------------------------------------------------------------------- /Insert a node in a BST - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Insert a node in a BST - GFG/README.md -------------------------------------------------------------------------------- /Is Binary Number Multiple of 3 - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Is Binary Number Multiple of 3 - GFG/README.md -------------------------------------------------------------------------------- /Is it Fibonacci - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Is it Fibonacci - GFG/README.md -------------------------------------------------------------------------------- /Is it Fibonacci - GFG/is-it-fibonacci.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Is it Fibonacci - GFG/is-it-fibonacci.java -------------------------------------------------------------------------------- /Isomorphic Strings - GFG/Isomorphic Strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Isomorphic Strings - GFG/Isomorphic Strings.cpp -------------------------------------------------------------------------------- /Isomorphic Strings - GFG/Isomorphic Strings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Isomorphic Strings - GFG/Isomorphic Strings.java -------------------------------------------------------------------------------- /Isomorphic Strings - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Isomorphic Strings - GFG/README.md -------------------------------------------------------------------------------- /Job Sequencing Problem - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Job Sequencing Problem - GFG/README.md -------------------------------------------------------------------------------- /Josephus problem - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Josephus problem - GFG/README.md -------------------------------------------------------------------------------- /Josephus problem - GFG/josephus-problem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Josephus problem - GFG/josephus-problem.java -------------------------------------------------------------------------------- /Juggler Sequence - GFG/Juggler Sequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Juggler Sequence - GFG/Juggler Sequence.java -------------------------------------------------------------------------------- /Jumping Numbers - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Jumping Numbers - GFG/README.md -------------------------------------------------------------------------------- /Jumping Numbers - GFG/jumping-numbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Jumping Numbers - GFG/jumping-numbers.java -------------------------------------------------------------------------------- /K Closest Points to Origin/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/K Closest Points to Origin/Readme.md -------------------------------------------------------------------------------- /K Sum Paths-GFG/K Sum Paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/K Sum Paths-GFG/K Sum Paths.cpp -------------------------------------------------------------------------------- /K Sum Paths-GFG/K Sum Paths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/K Sum Paths-GFG/K Sum Paths.java -------------------------------------------------------------------------------- /K closest Values/K closest Values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/K closest Values/K closest Values.cpp -------------------------------------------------------------------------------- /K closest Values/K closest Values.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/K closest Values/K closest Values.java -------------------------------------------------------------------------------- /K closest Values/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/K closest Values/Readme.md -------------------------------------------------------------------------------- /K closest elements - GFG/K closest elements.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/K closest elements - GFG/K closest elements.java -------------------------------------------------------------------------------- /K-Pangrams - GFG/K-Pangrams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/K-Pangrams - GFG/K-Pangrams.java -------------------------------------------------------------------------------- /Kadane's Algorithm - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Kadane's Algorithm - GFG/README.md -------------------------------------------------------------------------------- /Kadane's Algorithm - GFG/kadanes-algorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Kadane's Algorithm - GFG/kadanes-algorithm.java -------------------------------------------------------------------------------- /Knight Walk_gfg_s13.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Knight Walk_gfg_s13.java -------------------------------------------------------------------------------- /Knight in Geekland - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Knight in Geekland - GFG/README.md -------------------------------------------------------------------------------- /Knight in Geekland - GFG/knight-in-geekland.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Knight in Geekland - GFG/knight-in-geekland.cpp -------------------------------------------------------------------------------- /Knight in Geekland - GFG/knight-in-geekland.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Knight in Geekland - GFG/knight-in-geekland.java -------------------------------------------------------------------------------- /Kth Ancestor in a Tree - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Kth Ancestor in a Tree - GFG/README.md -------------------------------------------------------------------------------- /Kth largest element in BST - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Kth largest element in BST - GFG/README.md -------------------------------------------------------------------------------- /Kth smallest element - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Kth smallest element - GFG/README.md -------------------------------------------------------------------------------- /LCM Triplet - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/LCM Triplet - GFG/README.md -------------------------------------------------------------------------------- /LCM Triplet - GFG/lcm-triplet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/LCM Triplet - GFG/lcm-triplet.java -------------------------------------------------------------------------------- /LIS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/LIS.java -------------------------------------------------------------------------------- /Largest Sum Cycle - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Largest Sum Cycle - GFG/README.md -------------------------------------------------------------------------------- /Largest Sum Cycle - GFG/largest-sum-cycle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Largest Sum Cycle - GFG/largest-sum-cycle.java -------------------------------------------------------------------------------- /Largest number possible - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Largest number possible - GFG/README.md -------------------------------------------------------------------------------- /Largest prime factor - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Largest prime factor - GFG/README.md -------------------------------------------------------------------------------- /Largest subtree sum in a tree - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Largest subtree sum in a tree - GFG/README.md -------------------------------------------------------------------------------- /Largest sum contiguous subarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Largest sum contiguous subarray -------------------------------------------------------------------------------- /Last modified ball - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Last modified ball - GFG/README.md -------------------------------------------------------------------------------- /Last modified ball - GFG/last-modified-ball.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Last modified ball - GFG/last-modified-ball.java -------------------------------------------------------------------------------- /Leaders in an array - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Leaders in an array - GFG/README.md -------------------------------------------------------------------------------- /Leaders in an array - GFG/leaders-in-an-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Leaders in an array - GFG/leaders-in-an-array.cpp -------------------------------------------------------------------------------- /Leaf under budget - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Leaf under budget - GFG/README.md -------------------------------------------------------------------------------- /Leaf under budget - GFG/leaf-under-budget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Leaf under budget - GFG/leaf-under-budget.cpp -------------------------------------------------------------------------------- /Leaf under budget - GFG/leaf-under-budget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Leaf under budget - GFG/leaf-under-budget.java -------------------------------------------------------------------------------- /Leetcode 118. Pascal's Triangle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Leetcode 118. Pascal's Triangle -------------------------------------------------------------------------------- /Lemonade Change - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Lemonade Change - GFG/README.md -------------------------------------------------------------------------------- /Lemonade Change - GFG/lemonade-change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Lemonade Change - GFG/lemonade-change.cpp -------------------------------------------------------------------------------- /Lemonade Change - GFG/lemonade-change.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Lemonade Change - GFG/lemonade-change.java -------------------------------------------------------------------------------- /Letters Collection - GFG/Letters Collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Letters Collection - GFG/Letters Collection.cpp -------------------------------------------------------------------------------- /Letters Collection - GFG/Letters Collection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Letters Collection - GFG/Letters Collection.java -------------------------------------------------------------------------------- /Letters Collection - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Letters Collection - GFG/README.md -------------------------------------------------------------------------------- /Level of Nodes - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Level of Nodes - GFG/README.md -------------------------------------------------------------------------------- /Level of Nodes - GFG/level-of-nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Level of Nodes - GFG/level-of-nodes.cpp -------------------------------------------------------------------------------- /Level of Nodes - GFG/level-of-nodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Level of Nodes - GFG/level-of-nodes.java -------------------------------------------------------------------------------- /Level order traversal - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Level order traversal - GFG/README.md -------------------------------------------------------------------------------- /License Key Formatting_gfg_M_stringMan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/License Key Formatting_gfg_M_stringMan.java -------------------------------------------------------------------------------- /Longest Bitonic subsequence - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Longest Bitonic subsequence - GFG/README.md -------------------------------------------------------------------------------- /Longest Common Subsequence - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Longest Common Subsequence - GFG/README.md -------------------------------------------------------------------------------- /Longest Increasing Subsequence - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Longest Increasing Subsequence - GFG/README.md -------------------------------------------------------------------------------- /Longest Palindrome in a String - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Longest Palindrome in a String - GFG/README.md -------------------------------------------------------------------------------- /Longest Palindromic Subsequence - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Longest Palindromic Subsequence - GFG/README.md -------------------------------------------------------------------------------- /Longest Perfect Piece - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Longest Perfect Piece - GFG/README.md -------------------------------------------------------------------------------- /Longest Repeating Subsequence - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Longest Repeating Subsequence - GFG/README.md -------------------------------------------------------------------------------- /LongestIncreasingSubsequeneTab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/LongestIncreasingSubsequeneTab.java -------------------------------------------------------------------------------- /Lowest Common Ancestor in a BST - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Lowest Common Ancestor in a BST - GFG/README.md -------------------------------------------------------------------------------- /Lucky Numbers - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Lucky Numbers - GFG/README.md -------------------------------------------------------------------------------- /Lucky Numbers - GFG/lucky-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Lucky Numbers - GFG/lucky-numbers.cpp -------------------------------------------------------------------------------- /Lucky Numbers - GFG/lucky-numbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Lucky Numbers - GFG/lucky-numbers.java -------------------------------------------------------------------------------- /Magic Triplets - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Magic Triplets - GFG/README.md -------------------------------------------------------------------------------- /Magic Triplets - GFG/magic-triplets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Magic Triplets - GFG/magic-triplets.java -------------------------------------------------------------------------------- /Majority Vote - GFG/Majority Vote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Majority Vote - GFG/Majority Vote.java -------------------------------------------------------------------------------- /Make Array Elements Equal - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Make Array Elements Equal - GFG/README.md -------------------------------------------------------------------------------- /Make Matrix Beautiful - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Make Matrix Beautiful - GFG/README.md -------------------------------------------------------------------------------- /Make Palindrome - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Make Palindrome - GFG/README.md -------------------------------------------------------------------------------- /Make Palindrome - GFG/make-palindrome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Make Palindrome - GFG/make-palindrome.java -------------------------------------------------------------------------------- /Make array elements unique - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Make array elements unique - GFG/README.md -------------------------------------------------------------------------------- /Make the array beautiful - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Make the array beautiful - GFG/README.md -------------------------------------------------------------------------------- /Making A Large Island - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Making A Large Island - GFG/README.md -------------------------------------------------------------------------------- /Matchsticks game - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Matchsticks game - GFG/README.md -------------------------------------------------------------------------------- /Matchsticks game - GFG/matchsticks-game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Matchsticks game - GFG/matchsticks-game.cpp -------------------------------------------------------------------------------- /Matchsticks game - GFG/matchsticks-game.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Matchsticks game - GFG/matchsticks-game.java -------------------------------------------------------------------------------- /Max Coins - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Max Coins - GFG/README.md -------------------------------------------------------------------------------- /Max Coins - GFG/max-coins.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Max Coins - GFG/max-coins.java -------------------------------------------------------------------------------- /Max DAG Edges/Max DAG Edges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Max DAG Edges/Max DAG Edges.cpp -------------------------------------------------------------------------------- /Max DAG Edges/Max DAG Edges.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Max DAG Edges/Max DAG Edges.java -------------------------------------------------------------------------------- /Max DAG Edges/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Max DAG Edges/Readme.md -------------------------------------------------------------------------------- /Max Level Sum in Binary Tree - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Max Level Sum in Binary Tree - GFG/README.md -------------------------------------------------------------------------------- /Max Min - GFG/Max Min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Max Min - GFG/Max Min.cpp -------------------------------------------------------------------------------- /Max Min - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Max Min - GFG/README.md -------------------------------------------------------------------------------- /Max Min - GFG/max-min.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Max Min - GFG/max-min.java -------------------------------------------------------------------------------- /Max Sum without Adjacents - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Max Sum without Adjacents - GFG/README.md -------------------------------------------------------------------------------- /Max length chain_gfg_s9.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Max length chain_gfg_s9.java -------------------------------------------------------------------------------- /Max min Height - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Max min Height - GFG/README.md -------------------------------------------------------------------------------- /Max min Height - GFG/max-min-height.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Max min Height - GFG/max-min-height.cpp -------------------------------------------------------------------------------- /Maximum Bipartite Matching - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Bipartite Matching - GFG/README.md -------------------------------------------------------------------------------- /Maximum Depth Of Binary Tree - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Depth Of Binary Tree - GFG/README.md -------------------------------------------------------------------------------- /Maximum Diamonds - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Diamonds - GFG/README.md -------------------------------------------------------------------------------- /Maximum Diamonds - GFG/maximum-diamonds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Diamonds - GFG/maximum-diamonds.cpp -------------------------------------------------------------------------------- /Maximum Diamonds - GFG/maximum-diamonds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Diamonds - GFG/maximum-diamonds.java -------------------------------------------------------------------------------- /Maximum Identical Bowls - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Identical Bowls - GFG/README.md -------------------------------------------------------------------------------- /Maximum Index - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Index - GFG/README.md -------------------------------------------------------------------------------- /Maximum Index - GFG/maximum-index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Index - GFG/maximum-index.cpp -------------------------------------------------------------------------------- /Maximum Index - GFG/maximum-index.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Index - GFG/maximum-index.java -------------------------------------------------------------------------------- /Maximum Intersecting Lines - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Intersecting Lines - GFG/README.md -------------------------------------------------------------------------------- /Maximum Length - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Length - GFG/README.md -------------------------------------------------------------------------------- /Maximum Length - GFG/maximum-length.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Length - GFG/maximum-length.java -------------------------------------------------------------------------------- /Maximum Non-Adjacent Nodes Sum/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Non-Adjacent Nodes Sum/Readme.md -------------------------------------------------------------------------------- /Maximum Number of Toys - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Number of Toys - GFG/README.md -------------------------------------------------------------------------------- /Maximum Number of coins - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Number of coins - GFG/README.md -------------------------------------------------------------------------------- /Maximum Possible Value - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Possible Value - GFG/README.md -------------------------------------------------------------------------------- /Maximum Stone Removal /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Stone Removal /Readme.md -------------------------------------------------------------------------------- /Maximum Sub Array - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Sub Array - GFG/README.md -------------------------------------------------------------------------------- /Maximum Sub Array - GFG/maximum-sub-array.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Sub Array - GFG/maximum-sub-array.java -------------------------------------------------------------------------------- /Maximum Sum Combination - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Sum Combination - GFG/README.md -------------------------------------------------------------------------------- /Maximum Sum LCM - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Sum LCM - GFG/README.md -------------------------------------------------------------------------------- /Maximum Sum LCM - GFG/maximum-sum-lcm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Sum LCM - GFG/maximum-sum-lcm.java -------------------------------------------------------------------------------- /Maximum Triplet product - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Triplet product - GFG/README.md -------------------------------------------------------------------------------- /Maximum Value - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Value - GFG/README.md -------------------------------------------------------------------------------- /Maximum Value - GFG/maximum-value.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Value - GFG/maximum-value.java -------------------------------------------------------------------------------- /Maximum Weight Node - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum Weight Node - GFG/README.md -------------------------------------------------------------------------------- /Maximum number of 2X2 squares_gfg_E.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum number of 2X2 squares_gfg_E.java -------------------------------------------------------------------------------- /Maximum subset sum - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum subset sum - GFG/README.md -------------------------------------------------------------------------------- /Maximum subset sum - GFG/maximum-subset-sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Maximum subset sum - GFG/maximum-subset-sum.java -------------------------------------------------------------------------------- /Median of BST - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Median of BST - GFG/README.md -------------------------------------------------------------------------------- /Median of BST - GFG/median-of-bst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Median of BST - GFG/median-of-bst.cpp -------------------------------------------------------------------------------- /Median of BST - GFG/median-of-bst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Median of BST - GFG/median-of-bst.java -------------------------------------------------------------------------------- /Median of the Subarrays - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Median of the Subarrays - GFG/README.md -------------------------------------------------------------------------------- /Merge Without Extra Space - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Merge Without Extra Space - GFG/README.md -------------------------------------------------------------------------------- /Min Time - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Min Time - GFG/README.md -------------------------------------------------------------------------------- /Min Time - GFG/min-time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Min Time - GFG/min-time.cpp -------------------------------------------------------------------------------- /Min Time - GFG/min-time.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Min Time - GFG/min-time.java -------------------------------------------------------------------------------- /Min operations - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Min operations - GFG/README.md -------------------------------------------------------------------------------- /Min operations - GFG/min-operations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Min operations - GFG/min-operations.java -------------------------------------------------------------------------------- /Minimize the sum - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimize the sum - GFG/README.md -------------------------------------------------------------------------------- /Minimize the sum - GFG/minimize-the-sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimize the sum - GFG/minimize-the-sum.java -------------------------------------------------------------------------------- /Minimum BST Sum Subtree - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum BST Sum Subtree - GFG/README.md -------------------------------------------------------------------------------- /Minimum Cost of ropes_Heaps_gfg_E.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Cost of ropes_Heaps_gfg_E.java -------------------------------------------------------------------------------- /Minimum Days - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Days - GFG/README.md -------------------------------------------------------------------------------- /Minimum Days - GFG/minimum-days.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Days - GFG/minimum-days.java -------------------------------------------------------------------------------- /Minimum Deletions - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Deletions - GFG/README.md -------------------------------------------------------------------------------- /Minimum Deletions - GFG/minimum-deletions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Deletions - GFG/minimum-deletions.cpp -------------------------------------------------------------------------------- /Minimum Deletions - GFG/minimum-deletions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Deletions - GFG/minimum-deletions.java -------------------------------------------------------------------------------- /Minimum Integer - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Integer - GFG/README.md -------------------------------------------------------------------------------- /Minimum Integer - GFG/minimum-integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Integer - GFG/minimum-integer.cpp -------------------------------------------------------------------------------- /Minimum Integer - GFG/minimum-integer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Integer - GFG/minimum-integer.java -------------------------------------------------------------------------------- /Minimum K Consecutive Bit Flips/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum K Consecutive Bit Flips/Readme.md -------------------------------------------------------------------------------- /Minimum Number - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Number - GFG/README.md -------------------------------------------------------------------------------- /Minimum Number - GFG/minimum-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Number - GFG/minimum-number.cpp -------------------------------------------------------------------------------- /Minimum Number - GFG/minimum-number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Number - GFG/minimum-number.java -------------------------------------------------------------------------------- /Minimum Operations - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Operations - GFG/README.md -------------------------------------------------------------------------------- /Minimum Operations - GFG/minimum-operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Operations - GFG/minimum-operations.cpp -------------------------------------------------------------------------------- /Minimum Operations - GFG/minimum-operations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Operations - GFG/minimum-operations.java -------------------------------------------------------------------------------- /Minimum Steps Required - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Steps Required - GFG/README.md -------------------------------------------------------------------------------- /Minimum Steps to Halve Sum/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Steps to Halve Sum/Readme.md -------------------------------------------------------------------------------- /Minimum Swaps_gfg_E.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum Swaps_gfg_E.java -------------------------------------------------------------------------------- /Minimum X (xor) A - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum X (xor) A - GFG/README.md -------------------------------------------------------------------------------- /Minimum X (xor) A - GFG/minimum-x-xor-a.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum X (xor) A - GFG/minimum-x-xor-a.java -------------------------------------------------------------------------------- /Minimum number of Coins - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum number of Coins - GFG/README.md -------------------------------------------------------------------------------- /Minimum sum partition - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Minimum sum partition - GFG/README.md -------------------------------------------------------------------------------- /Missing number in matrix - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Missing number in matrix - GFG/README.md -------------------------------------------------------------------------------- /Modified Numbers and Queries_gfg_E.jav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Modified Numbers and Queries_gfg_E.jav -------------------------------------------------------------------------------- /Modify Linked List-1 - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Modify Linked List-1 - GFG/README.md -------------------------------------------------------------------------------- /Mother Vertex - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Mother Vertex - GFG/README.md -------------------------------------------------------------------------------- /Mother Vertex - GFG/mother-vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Mother Vertex - GFG/mother-vertex.cpp -------------------------------------------------------------------------------- /Mother Vertex - GFG/mother-vertex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Mother Vertex - GFG/mother-vertex.java -------------------------------------------------------------------------------- /Move all zeroes to end of array - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Move all zeroes to end of array - GFG/README.md -------------------------------------------------------------------------------- /Multiply two strings - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Multiply two strings - GFG/README.md -------------------------------------------------------------------------------- /Nearest smaller tower - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Nearest smaller tower - GFG/README.md -------------------------------------------------------------------------------- /Nearly Sorted/Nearly Sorted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Nearly Sorted/Nearly Sorted.cpp -------------------------------------------------------------------------------- /Nearly Sorted/Nearly Sorted.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Nearly Sorted/Nearly Sorted.java -------------------------------------------------------------------------------- /Nearly Sorted/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Nearly Sorted/Readme.md -------------------------------------------------------------------------------- /Next Greater Element - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Next Greater Element - GFG/README.md -------------------------------------------------------------------------------- /Next Happy Number - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Next Happy Number - GFG/README.md -------------------------------------------------------------------------------- /Next Happy Number - GFG/next-happy-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Next Happy Number - GFG/next-happy-number.cpp -------------------------------------------------------------------------------- /Next Happy Number - GFG/next-happy-number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Next Happy Number - GFG/next-happy-number.java -------------------------------------------------------------------------------- /Next Smallest Palindrome - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Next Smallest Palindrome - GFG/README.md -------------------------------------------------------------------------------- /Next_right_Node_E_gfg_29_8_22.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Next_right_Node_E_gfg_29_8_22.java -------------------------------------------------------------------------------- /Node at distance - GFG/Node at distance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Node at distance - GFG/Node at distance -------------------------------------------------------------------------------- /Non Repeating Character - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Non Repeating Character - GFG/README.md -------------------------------------------------------------------------------- /Normal BST to Balanced BST - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Normal BST to Balanced BST - GFG/README.md -------------------------------------------------------------------------------- /Nth Fibonacci Number - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Nth Fibonacci Number - GFG/README.md -------------------------------------------------------------------------------- /Nth catalan number - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Nth catalan number - GFG/README.md -------------------------------------------------------------------------------- /Nth catalan number - GFG/nth-catalan-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Nth catalan number - GFG/nth-catalan-number.cpp -------------------------------------------------------------------------------- /Number Formation - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number Formation - GFG/README.md -------------------------------------------------------------------------------- /Number Formation - GFG/number-formation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number Formation - GFG/number-formation.java -------------------------------------------------------------------------------- /Number Of Enclaves - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number Of Enclaves - GFG/README.md -------------------------------------------------------------------------------- /Number Of Enclaves - GFG/number-of-enclaves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number Of Enclaves - GFG/number-of-enclaves.cpp -------------------------------------------------------------------------------- /Number Of Islands - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number Of Islands - GFG/README.md -------------------------------------------------------------------------------- /Number Of Islands - GFG/number-of-islands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number Of Islands - GFG/number-of-islands.java -------------------------------------------------------------------------------- /Number Of Open Doors - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number Of Open Doors - GFG/README.md -------------------------------------------------------------------------------- /Number of 1 Bits - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number of 1 Bits - GFG/README.md -------------------------------------------------------------------------------- /Number of 1 Bits - GFG/number-of-1-bits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number of 1 Bits - GFG/number-of-1-bits.java -------------------------------------------------------------------------------- /Number of Good Components - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number of Good Components - GFG/README.md -------------------------------------------------------------------------------- /Number of Provinces - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number of Provinces - GFG/README.md -------------------------------------------------------------------------------- /Number of Subarrays of 0's - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number of Subarrays of 0's - GFG/README.md -------------------------------------------------------------------------------- /Number of Turns in Binary Tree_gfg_s11.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number of Turns in Binary Tree_gfg_s11.java -------------------------------------------------------------------------------- /Number of distinct subsequences - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number of distinct subsequences - GFG/README.md -------------------------------------------------------------------------------- /Number of occurrence - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number of occurrence - GFG/README.md -------------------------------------------------------------------------------- /Number of paths - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number of paths - GFG/README.md -------------------------------------------------------------------------------- /Number of paths - GFG/leetcode solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number of paths - GFG/leetcode solution.java -------------------------------------------------------------------------------- /Number of paths - GFG/number-of-paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number of paths - GFG/number-of-paths.cpp -------------------------------------------------------------------------------- /Number of paths - GFG/number-of-paths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Number of paths - GFG/number-of-paths.java -------------------------------------------------------------------------------- /Odd Even Problem - GFG/Odd Even Problem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Odd Even Problem - GFG/Odd Even Problem.java -------------------------------------------------------------------------------- /Optimal Array - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Optimal Array - GFG/README.md -------------------------------------------------------------------------------- /Optimal Array - GFG/optimal-array.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Optimal Array - GFG/optimal-array.java -------------------------------------------------------------------------------- /Padovan Sequence - GFG/Padovan Sequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Padovan Sequence - GFG/Padovan Sequence.java -------------------------------------------------------------------------------- /Palindrome String - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Palindrome String - GFG/README.md -------------------------------------------------------------------------------- /Palindrome String - GFG/palindrome-string.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Palindrome String - GFG/palindrome-string.java -------------------------------------------------------------------------------- /Palindromic Partitioning - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Palindromic Partitioning - GFG/README.md -------------------------------------------------------------------------------- /Partition Equal Subset Sum - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Partition Equal Subset Sum - GFG/README.md -------------------------------------------------------------------------------- /Partition the Array - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Partition the Array - GFG/README.md -------------------------------------------------------------------------------- /Party of Couples - GFG/Party of Couples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Party of Couples - GFG/Party of Couples.java -------------------------------------------------------------------------------- /Pascal Triangle - GFG/Pascal Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Pascal Triangle - GFG/Pascal Triangle.cpp -------------------------------------------------------------------------------- /Pascal Triangle - GFG/Pascal Triangle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Pascal Triangle - GFG/Pascal Triangle.java -------------------------------------------------------------------------------- /Perfect Numbers - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Perfect Numbers - GFG/README.md -------------------------------------------------------------------------------- /Perfect Numbers - GFG/perfect-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Perfect Numbers - GFG/perfect-numbers.cpp -------------------------------------------------------------------------------- /Perfect Numbers - GFG/perfect-numbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Perfect Numbers - GFG/perfect-numbers.java -------------------------------------------------------------------------------- /Perfect Sum Problem - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Perfect Sum Problem - GFG/README.md -------------------------------------------------------------------------------- /Phone directory - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Phone directory - GFG/README.md -------------------------------------------------------------------------------- /Phone directory - GFG/phone-directory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Phone directory - GFG/phone-directory.java -------------------------------------------------------------------------------- /Power Of 2 and Subsequences_gfg_M.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Power Of 2 and Subsequences_gfg_M.java -------------------------------------------------------------------------------- /Power Of Numbers - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Power Of Numbers - GFG/README.md -------------------------------------------------------------------------------- /Power Of Numbers - GFG/power-of-numbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Power Of Numbers - GFG/power-of-numbers.java -------------------------------------------------------------------------------- /Power Set - GFG/Power Set.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Power Set - GFG/Power Set.java -------------------------------------------------------------------------------- /Power of 2 - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Power of 2 - GFG/README.md -------------------------------------------------------------------------------- /Power of 2 - GFG/power-of-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Power of 2 - GFG/power-of-2.cpp -------------------------------------------------------------------------------- /Power of 2 - GFG/power-of-2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Power of 2 - GFG/power-of-2.java -------------------------------------------------------------------------------- /Powerfull Integer - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Powerfull Integer - GFG/README.md -------------------------------------------------------------------------------- /Powerfull Integer - GFG/powerfull-integer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Powerfull Integer - GFG/powerfull-integer.java -------------------------------------------------------------------------------- /Predecessor and Successor - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Predecessor and Successor - GFG/README.md -------------------------------------------------------------------------------- /Predict the Column-GFG/Predict the Column.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Predict the Column-GFG/Predict the Column.cpp -------------------------------------------------------------------------------- /Predict the Column-GFG/Predict the Column.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Predict the Column-GFG/Predict the Column.java -------------------------------------------------------------------------------- /Prefix Suffix String - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Prefix Suffix String - GFG/README.md -------------------------------------------------------------------------------- /Prefix match with other strings - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Prefix match with other strings - GFG/README.md -------------------------------------------------------------------------------- /Prime List - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Prime List - GFG/README.md -------------------------------------------------------------------------------- /Prime List - GFG/prime-list.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Prime List - GFG/prime-list.java -------------------------------------------------------------------------------- /Primes sum - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Primes sum - GFG/README.md -------------------------------------------------------------------------------- /Primes sum - GFG/primes-sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Primes sum - GFG/primes-sum.java -------------------------------------------------------------------------------- /Print Matrix in snake Pattern-GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Print Matrix in snake Pattern-GFG/README.md -------------------------------------------------------------------------------- /Print adjacency list - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Print adjacency list - GFG/README.md -------------------------------------------------------------------------------- /Print first n Fibonacci Numbers - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Print first n Fibonacci Numbers - GFG/README.md -------------------------------------------------------------------------------- /Pythagorean Triplet - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Pythagorean Triplet - GFG/README.md -------------------------------------------------------------------------------- /Queries on a Matrix_DP_gfg_H.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Queries on a Matrix_DP_gfg_H.java -------------------------------------------------------------------------------- /Queue Operations - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Queue Operations - GFG/README.md -------------------------------------------------------------------------------- /Queue Operations - GFG/queue-operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Queue Operations - GFG/queue-operations.cpp -------------------------------------------------------------------------------- /Queue Operations - GFG/queue-operations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Queue Operations - GFG/queue-operations.java -------------------------------------------------------------------------------- /Queue Reversal - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Queue Reversal - GFG/README.md -------------------------------------------------------------------------------- /Queue Reversal - GFG/queue-reversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Queue Reversal - GFG/queue-reversal.cpp -------------------------------------------------------------------------------- /Queue Reversal - GFG/queue-reversal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Queue Reversal - GFG/queue-reversal.java -------------------------------------------------------------------------------- /Quick Sort - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Quick Sort - GFG/README.md -------------------------------------------------------------------------------- /Quick Sort - GFG/quick-sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Quick Sort - GFG/quick-sort.cpp -------------------------------------------------------------------------------- /Quick Sort - GFG/quick-sort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Quick Sort - GFG/quick-sort.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/README.md -------------------------------------------------------------------------------- /Rat in a Maze/Rat in a Maze.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Rat in a Maze/Rat in a Maze.java -------------------------------------------------------------------------------- /Rat in a Maze/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Rat in a Maze/Readme.md -------------------------------------------------------------------------------- /Rearrange Array Alternately - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Rearrange Array Alternately - GFG/README.md -------------------------------------------------------------------------------- /Redundant Parenthesis - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Redundant Parenthesis - GFG/README.md -------------------------------------------------------------------------------- /Remainder on dividing by 11 - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Remainder on dividing by 11 - GFG/README.md -------------------------------------------------------------------------------- /Remove Half Nodes - GFG/Remove Half Nodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Remove Half Nodes - GFG/Remove Half Nodes.java -------------------------------------------------------------------------------- /Remove K Digits - GFG/Remove K Digits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Remove K Digits - GFG/Remove K Digits.cpp -------------------------------------------------------------------------------- /Remove K Digits - GFG/Remove K Digits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Remove K Digits - GFG/Remove K Digits.java -------------------------------------------------------------------------------- /Remove and Reverse - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Remove and Reverse - GFG/README.md -------------------------------------------------------------------------------- /Remove and Reverse - GFG/remove-and-reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Remove and Reverse - GFG/remove-and-reverse.cpp -------------------------------------------------------------------------------- /Remove the balls - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Remove the balls - GFG/README.md -------------------------------------------------------------------------------- /Remove the balls - GFG/remove-the-balls.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Remove the balls - GFG/remove-the-balls.java -------------------------------------------------------------------------------- /Remove the balls-gfg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Remove the balls-gfg/README.md -------------------------------------------------------------------------------- /Remove the balls-gfg/Remove the balls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Remove the balls-gfg/Remove the balls.cpp -------------------------------------------------------------------------------- /Remove the balls-gfg/Remove the balls.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Remove the balls-gfg/Remove the balls.java -------------------------------------------------------------------------------- /Reorder List - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Reorder List - GFG/README.md -------------------------------------------------------------------------------- /Reorder List - GFG/reorder-list.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Reorder List - GFG/reorder-list.java -------------------------------------------------------------------------------- /Replace O's with X's - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Replace O's with X's - GFG/README.md -------------------------------------------------------------------------------- /Reverse Coding - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Reverse Coding - GFG/README.md -------------------------------------------------------------------------------- /Reverse Coding - GFG/reverse-coding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Reverse Coding - GFG/reverse-coding.cpp -------------------------------------------------------------------------------- /Reverse Coding - GFG/reverse-coding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Reverse Coding - GFG/reverse-coding.java -------------------------------------------------------------------------------- /Reverse Words - GFG/Reverse Words.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Reverse Words - GFG/Reverse Words.java -------------------------------------------------------------------------------- /Reverse a Stack - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Reverse a Stack - GFG/README.md -------------------------------------------------------------------------------- /Reverse a Stack - GFG/reverse-a-stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Reverse a Stack - GFG/reverse-a-stack.cpp -------------------------------------------------------------------------------- /Reverse a Stack - GFG/reverse-a-stack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Reverse a Stack - GFG/reverse-a-stack.java -------------------------------------------------------------------------------- /Reverse a String - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Reverse a String - GFG/README.md -------------------------------------------------------------------------------- /Reverse a String - GFG/Reverse a String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Reverse a String - GFG/Reverse a String.cpp -------------------------------------------------------------------------------- /Reverse a String - GFG/reverse-a-string.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Reverse a String - GFG/reverse-a-string.java -------------------------------------------------------------------------------- /Reverse a linked list - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Reverse a linked list - GFG/README.md -------------------------------------------------------------------------------- /Reverse both parts - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Reverse both parts - GFG/README.md -------------------------------------------------------------------------------- /Reversing the equation - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Reversing the equation - GFG/README.md -------------------------------------------------------------------------------- /Right View of Binary Tree - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Right View of Binary Tree - GFG/README.md -------------------------------------------------------------------------------- /Rod Cutting - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Rod Cutting - GFG/README.md -------------------------------------------------------------------------------- /Rod Cutting - GFG/Rod Cutting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Rod Cutting - GFG/Rod Cutting.cpp -------------------------------------------------------------------------------- /Rod Cutting - GFG/rod-cutting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Rod Cutting - GFG/rod-cutting.java -------------------------------------------------------------------------------- /Roman Number to Integer - GFG/Leetcode 13.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Roman Number to Integer - GFG/Leetcode 13.java -------------------------------------------------------------------------------- /Roman Number to Integer - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Roman Number to Integer - GFG/README.md -------------------------------------------------------------------------------- /Roof Top - GFG/Roof Top.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Roof Top - GFG/Roof Top.java -------------------------------------------------------------------------------- /Rotate Bits - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Rotate Bits - GFG/README.md -------------------------------------------------------------------------------- /Rotate Bits - GFG/rotate-bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Rotate Bits - GFG/rotate-bits.cpp -------------------------------------------------------------------------------- /Rotate Bits - GFG/rotate-bits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Rotate Bits - GFG/rotate-bits.java -------------------------------------------------------------------------------- /Rotate Deque By K/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Rotate Deque By K/Readme.md -------------------------------------------------------------------------------- /Rotate Deque By K/Rotate Deque By K.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Rotate Deque By K/Rotate Deque By K.java -------------------------------------------------------------------------------- /Santa Banta - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Santa Banta - GFG/README.md -------------------------------------------------------------------------------- /Santa Banta - GFG/santa-banta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Santa Banta - GFG/santa-banta.java -------------------------------------------------------------------------------- /Satisfy the equation - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Satisfy the equation - GFG/README.md -------------------------------------------------------------------------------- /Save Your Life - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Save Your Life - GFG/README.md -------------------------------------------------------------------------------- /Save Your Life - GFG/save-your-life.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Save Your Life - GFG/save-your-life.java -------------------------------------------------------------------------------- /SaveYourLife_kadane_gfg_M.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/SaveYourLife_kadane_gfg_M.java -------------------------------------------------------------------------------- /Scrambled String - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Scrambled String - GFG/README.md -------------------------------------------------------------------------------- /Scrambled String - GFG/scrambled-string.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Scrambled String - GFG/scrambled-string.java -------------------------------------------------------------------------------- /Seating Arrangement - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Seating Arrangement - GFG/README.md -------------------------------------------------------------------------------- /Second smallest number - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Second smallest number - GFG/README.md -------------------------------------------------------------------------------- /Select Nodes - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Select Nodes - GFG/README.md -------------------------------------------------------------------------------- /Select Nodes - GFG/select-nodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Select Nodes - GFG/select-nodes.java -------------------------------------------------------------------------------- /Sequence Fun - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Sequence Fun - GFG/README.md -------------------------------------------------------------------------------- /Sequence Fun - GFG/sequence-fun.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Sequence Fun - GFG/sequence-fun.java -------------------------------------------------------------------------------- /Shortest Prime Path - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Shortest Prime Path - GFG/README.md -------------------------------------------------------------------------------- /Shortest XY distance in Grid - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Shortest XY distance in Grid - GFG/README.md -------------------------------------------------------------------------------- /Shreyansh and his bits - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Shreyansh and his bits - GFG/README.md -------------------------------------------------------------------------------- /Shuffle integers-GFG/Shuffle integers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Shuffle integers-GFG/Shuffle integers.cpp -------------------------------------------------------------------------------- /Shuffle integers-GFG/Shuffle integers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Shuffle integers-GFG/Shuffle integers.java -------------------------------------------------------------------------------- /Shy Geek - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Shy Geek - GFG/README.md -------------------------------------------------------------------------------- /Shy Geek - GFG/shy-geek.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Shy Geek - GFG/shy-geek.java -------------------------------------------------------------------------------- /Single valued subtree - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Single valued subtree - GFG/README.md -------------------------------------------------------------------------------- /Smaller Sum - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Smaller Sum - GFG/README.md -------------------------------------------------------------------------------- /Smaller Sum - GFG/smaller-sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Smaller Sum - GFG/smaller-sum.java -------------------------------------------------------------------------------- /Smallest Divisor-gfg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Smallest Divisor-gfg/README.md -------------------------------------------------------------------------------- /Smallest Divisor-gfg/Smallest Divisor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Smallest Divisor-gfg/Smallest Divisor.java -------------------------------------------------------------------------------- /Smallest Subset with Greater Sum_gfg_E.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Smallest Subset with Greater Sum_gfg_E.java -------------------------------------------------------------------------------- /Smallest number - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Smallest number - GFG/README.md -------------------------------------------------------------------------------- /Smallest number - GFG/smallest-number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Smallest number - GFG/smallest-number.java -------------------------------------------------------------------------------- /Smallest number on left_gfg_M.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Smallest number on left_gfg_M.java -------------------------------------------------------------------------------- /Smith Number/Smith Number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Smith Number/Smith Number.java -------------------------------------------------------------------------------- /Solve the Sudoku - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Solve the Sudoku - GFG/README.md -------------------------------------------------------------------------------- /Solve the Sudoku - GFG/solve-the-sudoku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Solve the Sudoku - GFG/solve-the-sudoku.cpp -------------------------------------------------------------------------------- /Solve the Sudoku - GFG/solve-the-sudoku.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Solve the Sudoku - GFG/solve-the-sudoku.java -------------------------------------------------------------------------------- /Sort an array of 0s, 1s and 2s - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Sort an array of 0s, 1s and 2s - GFG/README.md -------------------------------------------------------------------------------- /Sort012_DutchNationalFlag_gfg_E.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Sort012_DutchNationalFlag_gfg_E.java -------------------------------------------------------------------------------- /Special Digits - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Special Digits - GFG/README.md -------------------------------------------------------------------------------- /Special Digits - GFG/special-digits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Special Digits - GFG/special-digits.java -------------------------------------------------------------------------------- /Special Palindrome Substrings - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Special Palindrome Substrings - GFG/README.md -------------------------------------------------------------------------------- /Split Array Largest Sum - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Split Array Largest Sum - GFG/README.md -------------------------------------------------------------------------------- /Stepping Numbers - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Stepping Numbers - GFG/README.md -------------------------------------------------------------------------------- /Stepping Numbers - GFG/stepping-numbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Stepping Numbers - GFG/stepping-numbers.java -------------------------------------------------------------------------------- /Stepping Numbers_BFS_gfg_M.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Stepping Numbers_BFS_gfg_M.java -------------------------------------------------------------------------------- /Stickler Thief - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Stickler Thief - GFG/README.md -------------------------------------------------------------------------------- /Stickler Thief - GFG/stickler-thief.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Stickler Thief - GFG/stickler-thief.cpp -------------------------------------------------------------------------------- /Stickler Thief - GFG/stickler-thief.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Stickler Thief - GFG/stickler-thief.java -------------------------------------------------------------------------------- /Stock buy and sell II - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Stock buy and sell II - GFG/README.md -------------------------------------------------------------------------------- /String Mirror - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/String Mirror - GFG/README.md -------------------------------------------------------------------------------- /String Mirror - GFG/string-mirror.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/String Mirror - GFG/string-mirror.java -------------------------------------------------------------------------------- /String Permutations - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/String Permutations - GFG/README.md -------------------------------------------------------------------------------- /String Subsequence -GFG/String Subsequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/String Subsequence -GFG/String Subsequence.java -------------------------------------------------------------------------------- /String rp or pr - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/String rp or pr - GFG/README.md -------------------------------------------------------------------------------- /String rp or pr - GFG/string-rp-or-pr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/String rp or pr - GFG/string-rp-or-pr.cpp -------------------------------------------------------------------------------- /String rp or pr - GFG/string-rp-or-pr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/String rp or pr - GFG/string-rp-or-pr.java -------------------------------------------------------------------------------- /Subarray with 0 sum/Subarray with 0 sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Subarray with 0 sum/Subarray with 0 sum.java -------------------------------------------------------------------------------- /Subarray with given sum - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Subarray with given sum - GFG/README.md -------------------------------------------------------------------------------- /Subtree In N-ary Tree - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Subtree In N-ary Tree - GFG/README.md -------------------------------------------------------------------------------- /Sum of Beauty of All Substrings - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Sum of Beauty of All Substrings - GFG/README.md -------------------------------------------------------------------------------- /Sum of XOR of all pairs - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Sum of XOR of all pairs - GFG/README.md -------------------------------------------------------------------------------- /Sum of all divisors from 1 to n - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Sum of all divisors from 1 to n - GFG/README.md -------------------------------------------------------------------------------- /Sum of upper and lower triangles- GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Sum of upper and lower triangles- GFG/README.md -------------------------------------------------------------------------------- /Surround the 1's - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Surround the 1's - GFG/README.md -------------------------------------------------------------------------------- /Surround the 1's - GFG/surround-the-1s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Surround the 1's - GFG/surround-the-1s.cpp -------------------------------------------------------------------------------- /Surround the 1's - GFG/surround-the-1s.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Surround the 1's - GFG/surround-the-1s.java -------------------------------------------------------------------------------- /Symmetric Tree - GFG/Symmetric Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Symmetric Tree - GFG/Symmetric Tree.cpp -------------------------------------------------------------------------------- /Symmetric Tree - GFG/Symmetric Tree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Symmetric Tree - GFG/Symmetric Tree.java -------------------------------------------------------------------------------- /Task Scheduler - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Task Scheduler - GFG/README.md -------------------------------------------------------------------------------- /Task Scheduler - GFG/task-scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Task Scheduler - GFG/task-scheduler.cpp -------------------------------------------------------------------------------- /Task Scheduler - GFG/task-scheduler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Task Scheduler - GFG/task-scheduler.java -------------------------------------------------------------------------------- /Taxi Booking - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Taxi Booking - GFG/README.md -------------------------------------------------------------------------------- /Taxi Booking - GFG/taxi-booking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Taxi Booking - GFG/taxi-booking.cpp -------------------------------------------------------------------------------- /Taxi Booking - GFG/taxi-booking.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Taxi Booking - GFG/taxi-booking.java -------------------------------------------------------------------------------- /The Bit Game_gfg_E.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/The Bit Game_gfg_E.java -------------------------------------------------------------------------------- /The Knight's tour problem/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/The Knight's tour problem/Readme.md -------------------------------------------------------------------------------- /The Smurfs - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/The Smurfs - GFG/README.md -------------------------------------------------------------------------------- /The Smurfs - GFG/the-smurfs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/The Smurfs - GFG/the-smurfs.java -------------------------------------------------------------------------------- /Ticket Counter - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Ticket Counter - GFG/README.md -------------------------------------------------------------------------------- /Ticket Counter - GFG/ticket-counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Ticket Counter - GFG/ticket-counter.cpp -------------------------------------------------------------------------------- /Ticket Counter - GFG/ticket-counter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Ticket Counter - GFG/ticket-counter.java -------------------------------------------------------------------------------- /Top K Frequent Elements in Array -GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Top K Frequent Elements in Array -GFG/README.md -------------------------------------------------------------------------------- /Topological sort - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Topological sort - GFG/README.md -------------------------------------------------------------------------------- /Topological sort - GFG/topological-sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Topological sort - GFG/topological-sort.cpp -------------------------------------------------------------------------------- /Topological sort - GFG/topological-sort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Topological sort - GFG/topological-sort.java -------------------------------------------------------------------------------- /Total Cuts - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Total Cuts - GFG/README.md -------------------------------------------------------------------------------- /Total Cuts - GFG/total-cuts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Total Cuts - GFG/total-cuts.java -------------------------------------------------------------------------------- /Total Decoding Messages - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Total Decoding Messages - GFG/README.md -------------------------------------------------------------------------------- /Transform to Sum Tree - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Transform to Sum Tree - GFG/README.md -------------------------------------------------------------------------------- /Transitive closure of a Graph - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Transitive closure of a Graph - GFG/README.md -------------------------------------------------------------------------------- /Transpose of Matrix - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Transpose of Matrix - GFG/README.md -------------------------------------------------------------------------------- /Tree Transformation - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Tree Transformation - GFG/README.md -------------------------------------------------------------------------------- /Type it! - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Type it! - GFG/README.md -------------------------------------------------------------------------------- /Type it! - GFG/type-it.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Type it! - GFG/type-it.java -------------------------------------------------------------------------------- /Unequal Arrays - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Unequal Arrays - GFG/README.md -------------------------------------------------------------------------------- /Unequal Arrays - GFG/unequal-arrays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Unequal Arrays - GFG/unequal-arrays.java -------------------------------------------------------------------------------- /Union of Two Linked Lists - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Union of Two Linked Lists - GFG/README.md -------------------------------------------------------------------------------- /Union of two arrays - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Union of two arrays - GFG/README.md -------------------------------------------------------------------------------- /Unique K-Number Sum/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Unique K-Number Sum/Readme.md -------------------------------------------------------------------------------- /Unique K-Number Sum/Unique K-Number Sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Unique K-Number Sum/Unique K-Number Sum.java -------------------------------------------------------------------------------- /Unique Number of Occurrences - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Unique Number of Occurrences - GFG/README.md -------------------------------------------------------------------------------- /Unique Paths in a Grid - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Unique Paths in a Grid - GFG/README.md -------------------------------------------------------------------------------- /Unique partitions - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Unique partitions - GFG/README.md -------------------------------------------------------------------------------- /Unique partitions - GFG/unique-partitions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Unique partitions - GFG/unique-partitions.java -------------------------------------------------------------------------------- /Unique rows in boolean matrix - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Unique rows in boolean matrix - GFG/README.md -------------------------------------------------------------------------------- /Unit Area of largest region of 1's_gfg_s14,java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Unit Area of largest region of 1's_gfg_s14,java -------------------------------------------------------------------------------- /Update Queries - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Update Queries - GFG/README.md -------------------------------------------------------------------------------- /Update Queries - GFG/update-queries.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Update Queries - GFG/update-queries.java -------------------------------------------------------------------------------- /Valid Compressed String - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Valid Compressed String - GFG/README.md -------------------------------------------------------------------------------- /Vertical sum - GFG/Vertical sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Vertical sum - GFG/Vertical sum.java -------------------------------------------------------------------------------- /Walls Coloring - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Walls Coloring - GFG/README.md -------------------------------------------------------------------------------- /Walls Coloring - GFG/walls-coloring.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Walls Coloring - GFG/walls-coloring.java -------------------------------------------------------------------------------- /Walls Coloring II - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Walls Coloring II - GFG/README.md -------------------------------------------------------------------------------- /Walls Coloring II - GFG/walls-coloring-ii.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Walls Coloring II - GFG/walls-coloring-ii.java -------------------------------------------------------------------------------- /Wave Array - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Wave Array - GFG/README.md -------------------------------------------------------------------------------- /Wave Array - GFG/wave-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Wave Array - GFG/wave-array.cpp -------------------------------------------------------------------------------- /Wave Array - GFG/wave-array.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Wave Array - GFG/wave-array.java -------------------------------------------------------------------------------- /Wifi Range - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Wifi Range - GFG/README.md -------------------------------------------------------------------------------- /Wifi Range - GFG/wifi-range.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Wifi Range - GFG/wifi-range.java -------------------------------------------------------------------------------- /Wine Buying and Selling - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Wine Buying and Selling - GFG/README.md -------------------------------------------------------------------------------- /Word Break - GFG/Word Break.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Word Break - GFG/Word Break.java -------------------------------------------------------------------------------- /Word Search - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Word Search - GFG/README.md -------------------------------------------------------------------------------- /Word Search - GFG/word-search.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Word Search - GFG/word-search.java -------------------------------------------------------------------------------- /Yet another query problem - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Yet another query problem - GFG/README.md -------------------------------------------------------------------------------- /Zero Sum Subarrays - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/Zero Sum Subarrays - GFG/README.md -------------------------------------------------------------------------------- /ZigZag Tree Traversal - GFG/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/ZigZag Tree Traversal - GFG/Readme.md -------------------------------------------------------------------------------- /cimpress questions/file.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/cimpress questions/file.java -------------------------------------------------------------------------------- /combine pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/combine pdf.pdf -------------------------------------------------------------------------------- /k largest elements - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/k largest elements - GFG/README.md -------------------------------------------------------------------------------- /k largest elements - GFG/k-largest-elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/k largest elements - GFG/k-largest-elements.cpp -------------------------------------------------------------------------------- /k-th smallest element in BST - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/k-th smallest element in BST - GFG/README.md -------------------------------------------------------------------------------- /nCr - GFG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/nCr - GFG/README.md -------------------------------------------------------------------------------- /nCr - GFG/n-cr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/nCr - GFG/n-cr.cpp -------------------------------------------------------------------------------- /nCr - GFG/n-cr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/nCr - GFG/n-cr.java -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/readme.md -------------------------------------------------------------------------------- /stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkshayAnil1080/DSA/HEAD/stats.json --------------------------------------------------------------------------------