iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 13
0
自我挑戰組

各種筆記系列 第 13

[Kata] Clojure - Day 13

  • 分享至 

  • xImage
  •  

Number toString

Solution

(ns number-toString)

(def a (.toString 123))

How good are you really?

You receive an array with your peers' test scores. Now calculate the average and compare your score!
Return True if you're better, else False!

Solution

(ns kata.how-good-are-you)

(defn mean [coll] 
  (/ (reduce + coll) (count coll)))

(defn better_than_average [class_points your_points]
 (cond 
   (> (mean class_points) your_points) false
   :else true
   )
)

上一篇
[Kata] Clojure - Day 12
下一篇
[Kata] Clojure - Day 14
系列文
各種筆記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言