Skip to content

benjaminmishra/dsa-practice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DSA practice problems

Here is a list of problems that are included in this repo along with their leetcode or webiste from which they were found link

Problem Name Problem Desc Link LeetCode/Solution Link
Max Sub Array Sum Find the max sum of contagious sub array in a given array max-sub-array-prob Link
Inversion Count Count the number of inversions in an array inversion-count-in-arr Link
Merge Sort Sort an array with time complexity n log n merge-srot GeeksForGeeks
Disappearing numbers Find All Numbers Disappeared in an Array disappearing-numbers LeetCode
Delete Duplicates Delete duplicates from a sorted array delete-duplicates LeetCode
Buy sell stock once Buy and sell stock only once to maximize profit buy-sell-stock LeetCode
Bubble sort Bubble sort algorithm implementation bubble-sort Youtube
Binary Search Binary Search algo implemented two ways binary-search GeeksforGeeks
BST Binary Search Tree Implementation and operations trees GeeksforGeeks
Evaluate Postfix Evalute a reverse polish notation posfix_eval Leetcode