hamming: initial commit

This commit is contained in:
Dmitry Kokorin 2016-02-22 10:51:26 +03:00
parent 6f5bbd1460
commit ead8d3fbf3
5 changed files with 192 additions and 0 deletions

10
cpp/hamming/hamming.cpp Normal file
View file

@ -0,0 +1,10 @@
#include "hamming.h"
namespace hamming {
int compute(const char *first, const char *second) {
return 0;
}
}