Newer
Older
exercism-cpp / scrabble-score / scrabble_score.h
@Wook Song Wook Song on 29 Oct 2022 189 bytes Easy: Add a solution for "Scrabble Score"
#if !defined(SCRABBLE_SCORE_H)
#define SCRABBLE_SCORE_H

#include <string>

namespace scrabble_score {
int score(std::string s);
}  // namespace scrabble_score

#endif  // SCRABBLE_SCORE_H