https://github.com/plugfox/leetcode-solutions-c
LeetCode solutions for C
https://github.com/plugfox/leetcode-solutions-c
Last synced: about 1 year ago
JSON representation
LeetCode solutions for C
- Host: GitHub
- URL: https://github.com/plugfox/leetcode-solutions-c
- Owner: PlugFox
- License: mit
- Created: 2023-03-28T18:12:30.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-28T23:26:58.000Z (about 3 years ago)
- Last Synced: 2025-01-05T02:42:10.445Z (over 1 year ago)
- Language: C
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Setup environment
If you have a problem with header imports in your IDE, you can try to one-time build with `make`.
### Windows
```bash
choco install -y make cmake ninja llvm mingw
```
### macOS
```bash
brew install make cmake ninja llvm pre-commit clang-format
```
### Linux
```bash
sudo apt-get -y install make cmake ninja-build llvm
```
## Build
```bash
make release
```
or
```bash
make debug
```
## Test
```bash
make test
```