https://github.com/subhadeeproy3902/leetcode100
Contains all the LeetCode codes I have submitted from May 23, 2023
https://github.com/subhadeeproy3902/leetcode100
Last synced: about 2 months ago
JSON representation
Contains all the LeetCode codes I have submitted from May 23, 2023
- Host: GitHub
- URL: https://github.com/subhadeeproy3902/leetcode100
- Owner: subhadeeproy3902
- License: apache-2.0
- Created: 2023-06-23T15:02:59.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-24T18:49:10.000Z (almost 2 years ago)
- Last Synced: 2025-04-02T07:17:05.112Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 120 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

## Solutions of the Leetcode problems I have solved ->
## 1. How to install and run C/C++ ?### Installation ->
1. Create a ```C/C++``` virtual environment.
2. Clone the repo ```git clone https://github.com/subhadeep3902/LeetCode-Subha.git``` or download the repository.
3. Go to the cloned/downloaded directory, and navigate to your desired program -> ``` cd Leetcode-Codes ``` -> ``` cd "folder_name" ```, and then to the code file.
4. Run ``` pip3 install gcc ```.
5. And now you can run the example scripts or create your own scripts.### Usage ->
- To run any program (without ), 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 ), 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.## 2. How to install and run python ?
### Installation ->
1. Create a ```python``` virtual environment.
2. Clone the repo ```git clone https://github.com/subhadeep3902/LeetCode-Subha.git``` or download the repository.
3. Go to the cloned/downloaded directory, and navigate to your desired program -> ``` cd Leetcode-Codes ``` -> ``` cd "folder_name" ```, and then to the code file.
4. Go to the [Python website.](https://www.python.org/)
5. Download the software.
6. Install it according to the guide.
7. Open terminal and type ```python --version``` to see whether it is properly installed or not.
8. And now you can run the example scripts or create your own scripts.### Usage ->
- 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.
## FAQ
- How to stop the script? Ctrl+C (control+C for Mac)
- For any other problems, feel free to raise an issue.## Contributing
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.
## Where to contact ?
Contact: [[email protected]]## License
[Apache License 2.0 © LeetCode-Subha](https://github.com/subhadeep3902/LeetCode-Subha/blob/3d8a48b6e1277b9c2086564eb920dd49b4cd9b02/LICENSE)## 🙋♂️ Support
💙 If you like this project, give it a ⭐ and share it with friends!
---
Made with ❤️ and C, C++, and Python.