Newer
Older
exercism-cpp / armstrong-numbers / armstrong_numbers.h
@Wook Song Wook Song on 30 Oct 2022 194 bytes Easy: Add a solution for "Armstrong Numbers"
#if !defined(ARMSTRONG_NUMBERS_H)
#define ARMSTRONG_NUMBERS_H

namespace armstrong_numbers {
bool is_armstrong_number(int num);
}  // namespace armstrong_numbers

#endif  // ARMSTRONG_NUMBERS_H