Newer
Older
exercism-cpp / isogram / isogram.h
@Wook Song Wook Song on 20 Oct 2022 171 bytes Easy: Add solutions for three exercises
#if !defined(ISOGRAM_H)
#define ISOGRAM_H

#include <string>

namespace isogram {
bool is_isogram(const std::string phrase);
}  // namespace isogram

#endif  // ISOGRAM_H