diff options
| -rw-r--r-- | challenge-343/asherbhs/hy/ch-1.hy | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/challenge-343/asherbhs/hy/ch-1.hy b/challenge-343/asherbhs/hy/ch-1.hy index 985d3e54a3..7571b87991 100644 --- a/challenge-343/asherbhs/hy/ch-1.hy +++ b/challenge-343/asherbhs/hy/ch-1.hy @@ -1,4 +1,6 @@ -(defn zero-friend [nums] (min (map abs nums))) +(defn zero-friend [nums] + (min (map abs nums)) +) (print (zero-friend [4 2 -1 3 -2])) (print (zero-friend [-5 5 -3 3 -1 1])) |
