Skip to content

Latest commit

 

History

History
86 lines (80 loc) · 9.07 KB

README.md

File metadata and controls

86 lines (80 loc) · 9.07 KB

DSA Problems in Java

Arrays:

  • Easy:
    • 1. Two Sum - code
    • 1672. Richest Customer Wealth - code
    • 1337. The K Weakest Rows in a Matrix - code
    • 496. Next Greater Element I - code
    • 1475. Final Prices With a Special Discount in a Shop - code
    • 1979. Find Greatest Common Divisor of Array - code
    • 485. Max Consecutive Ones - code
    • 905. Sort Array By Parity - code
    • Gfg. Segregate 0s and 1s - code
  • Medium:
  • Hard:
    • 41. First Missing Positive - code

Math:

Bit Manipulation:

Strings:

  • Easy:
    • 557. Reverse Words in a String III - code

Trees:

  • Easy:
    • 94. Binary Tree Inorder Traversal - code
    • 144. Binary Tree Preorder Traversal - code

Pattens: