Sha256: c4b6f1dd97a04836673c8a525f6df457a9b5d076653fed07955ce196658b499c
Contents?: true
Size: 335 Bytes
Versions: 69
Compression:
Stored size: 335 Bytes
Contents
defmodule CollatzConjecture do @doc """ calc/1 takes an integer and returns the number of steps required to get the number to 1 when following the rules: - if number is odd, multiply with 3 and add 1 - if number is even, divide by 2 """ @spec calc(number :: pos_integer) :: pos_integer def calc(input) do end end
Version data entries
69 entries across 69 versions & 1 rubygems