iT邦幫忙

鐵人檔案

第 12 屆 iThome 鐵人賽
回列表
自我挑戰組

各種筆記 系列

一頭栽入寫 code 世界,好多想學的,學什麼就寫什麼

鐵人鍊成 | 共 30 篇文章 | 3 人訂閱 訂閱系列文 RSS系列文
DAY 1

[Kata] Clojure - Day 1

為了熟悉 clojure,刷題練習語法 Get the mean of an array 回傳最接近陣列平均數的整數(無條件捨去),且不會給空陣列Return...

2020-09-15 ‧ 由 bee 分享
DAY 2

[Kata] Clojure - Day 2

String repeat 依據給予的次數重複字串Write a function called repeat_str which repeats the gi...

2020-09-16 ‧ 由 bee 分享
DAY 3

[Kata] Clojure - Day 3

Recursion 101 You will be given two positive integers a and b and your task will...

2020-09-17 ‧ 由 bee 分享
DAY 4

[Kata] Clojure - Day 4

Alternate case Write function alternateCase which switch every letter in string...

2020-09-18 ‧ 由 bee 分享
DAY 5

[Kata] Clojure - Day 5

Function 1 - hello world Make a simple function called greet that returns the mo...

2020-09-19 ‧ 由 bee 分享
DAY 6

[Kata] Clojure - Day 6

Is n divisible by x and y? Create a function that checks if a number n is divisi...

2020-09-20 ‧ 由 bee 分享
DAY 7

[Kata] Clojure - Day 7

Beginner Series - Clock Clock shows 'h' hours, 'm' minutes and 's' seconds after...

2020-09-21 ‧ 由 bee 分享
DAY 8

[Kata] Clojure - Day 8

How do I compare numbers? What could be easier than comparing integer numbers? H...

2020-09-22 ‧ 由 bee 分享
DAY 9

[Kata] Clojure - Day 9

Maximum Length Difference You are given two arrays a1 and a2 of strings. Each st...

2020-09-23 ‧ 由 bee 分享
DAY 10

[Kata] Clojure - Day 10

Even or Odd 給予一個整數,如果是偶數回傳 Even; 奇數回傳 Odd Solution 1 (ns kata) (defn even-or-od...

2020-09-24 ‧ 由 bee 分享