Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
stewartmurrie committed Nov 17, 2024
1 parent 6a60cab commit 662f383
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions exercises/concept/secrets/.meta/Exemplar.elm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Secrets exposing (clearBits, flipBits, setBits, shiftBack, decrypt)
module Secrets exposing (clearBits, decrypt, flipBits, setBits, shiftBack)

import Bitwise

Expand All @@ -21,9 +21,9 @@ clearBits mask value =
|> Bitwise.and value


decrypt secret =
decrypt secret =
secret
|> setBits 1996
|> flipBits 2009
|> shiftBack 5
|> clearBits 17
|> setBits 1996
|> flipBits 2009
|> shiftBack 5
|> clearBits 17

0 comments on commit 662f383

Please sign in to comment.