Skip to content

Commit 19f037f

Browse files
committed
[v3] Extract Concepts from v2 exercise: collatz-conjecture
Fixes #401
1 parent eec57a6 commit 19f037f

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Collatz Conjecture
2+
3+
## Task
4+
5+
The Collatz Conjecture or 3x+1 problem can be summarized as follows:
6+
7+
Take any positive integer n. If n is even, divide n by 2 to get n / 2. If n is odd, multiply n by 3 and add 1 to get 3n + 1. Repeat the process indefinitely. The conjecture states that no matter which number you start with, you will always reach 1 eventually.
8+
9+
Given a number n, return the number of steps required to reach 1.
10+
11+
## Concepts
12+
13+
- .h file: the most common approach is to use a `.h` for the declarations
14+
- .cpp file: the most common approach is to use a `.cpp` for the definitions
15+
- include guard: protect against multiple inclusion within a single translation unit
16+
- .cpp includes .h: a `.cpp` file should include its `.h` file
17+
- namespaces: the function is member of a namespace
18+
- functions: used as the main entry point for the exercise
19+
- including directives: `<stdexcept>` is needed for `std::domain_error`
20+
- function arguments: starting number
21+
- return values: the result is returned by the function
22+
- conditionals using if: conditionally execute logic using an `if` statement
23+
- comparison operators: `!=` and `<=`
24+
- exceptions: throw an exception if the starting number is smaller than 1
25+
- signed integers: the core guidelines recommend signed integers for arithmetic
26+
- increment: `++`
27+
- math operators: the modulo operator `%` is used
28+
- loops: use `while` to check if function has reached its end
29+
30+
## Alternative approaches
31+
32+
- implement solution as `inline` functions in the `.h` file
33+
- using a recursive solution and call `steps` every time the end-condition has not been met

0 commit comments

Comments
 (0)