trinary: initial commit

This commit is contained in:
Dmitry Kokorin 2016-04-07 15:39:30 +03:00
parent 0f1fb185f9
commit 32aef4e595
2 changed files with 46 additions and 0 deletions

11
cpp/trinary/trinary.h Normal file
View file

@ -0,0 +1,11 @@
#pragma once
#define EXERCISM_RUN_ALL_TESTS
#include <string>
namespace trinary {
int to_decimal(const std::string &input);
}