10 lines
116 B
C++
10 lines
116 B
C++
#include "hamming.h"
|
|
|
|
namespace hamming {
|
|
|
|
int compute(const char *first, const char *second) {
|
|
|
|
return 0;
|
|
}
|
|
|
|
}
|