https://github.com/gowthertg/leetcode
https://github.com/gowthertg/leetcode
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gowthertg/leetcode
- Owner: GowthertG
- Created: 2024-03-14T06:33:20.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-01T16:28:38.000Z (4 months ago)
- Last Synced: 2025-02-01T17:27:32.907Z (4 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LeetCode Solutions
This repository contains my solutions to various problems on [LeetCode](https://leetcode.com/). Solutions are implemented in Python or C.
## Usage
Feel free to explore the solutions provided in this repository. Each solution is accompanied by a brief explanation of the approach used.
To run the Python solutions locally, make sure you have Python installed. Navigate to the respective problem directory and execute the solution file.
```bash
python problem_name.py
```
For the C solutions, make sure you have a C compiler installed. Navigate to the respective problem directory and compile the solution file using the following commands:
```bash
gcc problem_name.c -o problem_name
./problem_name
```