serverx-org / DSA-MASTERY

This repository covers the roadmap for mastering Data Structures and Algorithms in JavaScript, Python, C/C++, and Java.
https://serverx.org.in/articles/dsa-mastery/
7 stars 6 forks source link

Added a program for SORTING a STACK using RECURSION #8

Open sagar98cyber opened 3 days ago

sagar98cyber commented 3 days ago

Greetings, Let me know if you need me to make some changes in my existing PR!

gautamankoji commented 3 days ago

it's a good idea to include a README.md file, this file should explain the concept you're working on and your code

and use K&R Style (Kernighan and Ritchie) for code formating example

if (x > 0) {
    // code block
}