codinasion-archive / codinasion-dsa

An open source codebase for sharing programming solutions for Data Structures and Algorithm (DSA) problems
https://codinasion.vercel.app/dsa/
MIT License
5 stars 31 forks source link

Quick Sort #125

Open harshraj8843 opened 2 years ago

harshraj8843 commented 2 years ago

Description

Write a programme for Quick sort

Input  : 5 4 1 6 2
Output : 1 2 4 5 6

Tracking Issues