Skip to content

Latest commit

 

History

History
31 lines (28 loc) · 2.59 KB

README.md

File metadata and controls

31 lines (28 loc) · 2.59 KB

CodeWars C++ Badge License

I upload these as-is from my local testing environment.
Typical directory structure for C++ challenges follows:

nkyu-kata-name
├─ include
│  └─ functionname.hpp (module header)
├─ src
│  ├─ functionname.cpp (module implementation)         ⇐ solution
│  └─ main.cpp (improvised unit tests, debugging)
├─ .gitignore (excludes binaries/objects)
└─ README.md