Newer
Older
exercism-cpp / collatz-conjecture / collatz_conjecture.h
@Wook Song Wook Song on 12 Oct 2022 184 bytes Easy: Add solutions for two exercises
#if !defined(COLLATZ_CONJECTURE_H)
#define COLLATZ_CONJECTURE_H

namespace collatz_conjecture {
int steps(int num);
}  // namespace collatz_conjecture

#endif  // COLLATZ_CONJECTURE_H