- Create a
C/C++
virtual environment. - Clone the repo
git clone https://github.com/AdityaSeth777/LeetCode-Adi.git
or download the repository. - Go to the cloned/downloaded directory, and navigate to your desired program ->
cd "folder_name"
, and then to the code file. - Run
pip3 install gcc
. - And now you can run the example scripts or create your own scripts.
-
To run any program (without <math.h>), run
gcc filename.c -o name
, where filename is the name of the file you are wanting to execute; name = output executable file. -
Then type
./name
, and then press Enter to execute successfully. -
To run any program (with <math.h>), run
gcc filename.c -lm
, where filename is the name of the file you are wanting to execute. -
Then type
./a.out
, and then press Enter to execute successfully.
- Create a
python
virtual environment. - Clone the repo
git clone https://github.com/AdityaSeth777/LeetCode-Adi.git
or download the repository. - Go to the cloned/downloaded directory, and navigate to your desired program ->
cd "folder_name"
, and then to the code file. - Go to the Python website.
- Download the software.
- Install it according to the guide.
- Open terminal and type
python --version
to see whether it is properly installed or not. - And now you can run the example scripts or create your own scripts.
- To run any python program, run
python filename.py
, where filename is the name of the file you are wanting to execute. - If the above command doesn't work, then run
python3 filename.py
, where again filename is the name of the file you are wanting to execute.
- How to stop the script? Ctrl+C (control+C for Mac)
- For any other problems, feel free to raise an issue.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
Contact: [[email protected]]
💙 If you like this project, give it a ⭐ and share it with friends!
☕ Buy me a coffee
Made with ❤️ and C, C++, and Python.