[Collatz Conjecture] Approaches - missing words fix (#3753)

* Added missing words in General guidance text

* Update exercises/practice/collatz-conjecture/.approaches/introduction.md

---------

Co-authored-by: BethanyG <BethanyG@users.noreply.github.com>
This commit is contained in:
Ela Bogucka
2024-08-13 21:09:50 +02:00
committed by GitHub
parent 56d158766f
commit adaa483944

View File

@@ -6,7 +6,7 @@ You can also solve it by using if and else statements or the ternary operator.
## General guidance
The key to this exercise is to check if the number and then do the correct operation.
The key to this exercise is to check if the number is even or odd and then perform the correct operation.
Under this process you are supposed to count how many steps it takes to get to one.
## Approach: If/Else