Skip to content

mohdasha/coding-practice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Coding Questions

Some Important Links

Problems: Trees

Problems: Arrays

  • Maximum subarray product
  • Maximum subarray sum
  • Longest Increasing Subsequence
  • Jump Game (Find if it is possible to reach end)
  • Product of Array except itself
  • First unique character
  • Find K^th largest/smallest element

Problems: Strings

  • Longest common subsequence
  • Longest common substring
  • Permutation of a string
  • Longest palindromic string
  • Rolling Hash Concept
  • Rabin Karp Algorithm

Problems: Linked Lists

  • Reverse a linked list
  • Swap pairs in linked list
  • Reverse a linked list in Pair of size 'k'
  • Clone linked list with random pointers
  • Detect 'Y' Shape

Problems: Dynamic Programming

  • Coin Change Problem
  • Buying and Selling Stock I
  • Buying and Selling Stock II
  • Traping rain water

Problems: Bitwise Manipulation

  • Check if number is power of 2
  • Find complement of number
  • Count number of set bits
  • Reverse bits of number

Math Concepts