https://github.com/michimani/modern-cpp-challenge
https://github.com/michimani/modern-cpp-challenge
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/michimani/modern-cpp-challenge
- Owner: michimani
- License: mit
- Created: 2023-09-29T15:11:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-02T12:10:53.000Z (over 1 year ago)
- Last Synced: 2025-01-04T15:57:30.296Z (5 months ago)
- Language: C++
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Modern C++ Challenge
===This repository contains my solutions to the problems in the book [Modern C++ Challenge](https://www.packtpub.com/application-development/modern-c-challenge) by Marius Bancila.
In Japanese: [O'Reilly Japan - Modern C++チャレンジ](https://www.oreilly.co.jp/books/9784873118697/)
## Original Repository
[PacktPublishing/The-Modern-Cpp-Challenge: The Modern C++ Challenge, published by Packt](https://github.com/PacktPublishing/The-Modern-Cpp-Challenge)
## My environment
```bash
$ clang --versionApple clang version 15.0.0 (clang-1500.0.40.1)
Target: arm64-apple-darwin23.0.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
```## VS Code setting
`.vscode/tasks.json`
```json
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: clang++ build active file",
"command": "/usr/bin/clang++",
"args": [
"-fcolor-diagnostics",
"-fansi-escape-codes",
"-g",
"${file}",
"-o",
"${fileDirname}/build/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": ""
}
],
"version": "2.0.0"
}
```# License
[MIT](https://github.com/michimani/modern-cpp-challenge/blob/main/LICENSE)
# Author
[michimani210](https://twitter.com/michimani210)