This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
plasmarad - 2024 | |
CollatzConjecture: | |
if a number is even: divide by 2 | |
if a number is odd : Mult 3 add 1 | |
Eventually, with all numbers, it will loop into 1 [ex: 1 -> 4 -> 2 -> 1] | |
*/ | |
#include <stdint.h> |