Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dpronin/beautiful-number
https://github.com/dpronin/beautiful-number
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/dpronin/beautiful-number
- Owner: dpronin
- Created: 2023-12-28T19:19:27.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-08-10T09:07:00.000Z (5 months ago)
- Last Synced: 2024-08-10T10:24:29.967Z (5 months ago)
- Language: C++
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Configuring and building
## Release
```bash
mkdir -p release
rm -rf release/*
cd release
cmake ../ -DCMAKE_BUILD_TYPE=Release
cmake --build . --verbose -j$(nproc)
```## Debug
```bash
mkdir -p debug
rm -rf debug/*
cd debug
cmake ../ -DCMAKE_BUILD_TYPE=Debug
cmake --build . --verbose -j$(nproc)
```# Running
```bash
$ ./task
```To meet the requirements of the task
```bash
$ ./task 13 13
```