Last active
October 19, 2017 22:36
-
-
Save evanlouie/e1bd2517741fae1f1eb9b063d05fed31 to your computer and use it in GitHub Desktop.
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
# functional | |
Enum.sum(Integer.digits(trunc(:math.pow(2,1000)))) | |
# Pipe | |
:math.pow(2,1000) |> trunc |> Integer.digits |> Enum.reduce(&(&1+&2)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment