exercism-solutions/cpp/hamming/hamming.cpp

10 lines
116 B
C++

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