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

7
cpp/hamming/hamming.h Normal file
View file

@ -0,0 +1,7 @@
#pragma once
namespace hamming {
int compute(const char *first, const char *second);
}