exercism-solutions/cpp/hamming/hamming.h

7 lines
90 B
C++

#pragma once
namespace hamming {
int compute(const char *first, const char *second);
}