vishal8113 / Hacktoberfest-2024

This repository is waiting for your contribution. If you have not contribute in hacktober fest till now. You can start contributing in open source from here.
3 stars 25 forks source link

Added Two Sum and Valid Parentheses solutions in Python #47

Open Bhabuk10 opened 2 hours ago

Bhabuk10 commented 2 hours ago

Description

This pull request addresses issue #1 by adding two widely recognized DSA problems commonly asked in interviews:

  1. Two Sum - Solution to find indices of two numbers in an array that add up to a given target.
  2. Valid Parentheses - Solution to verify if a string has balanced parentheses using stack logic.

Changes Made