CodeWars-Swift 習(xí)題筆記

Triangle number check

Description:

A triangle number is a number where n objects form an equilateral triangle (it's a bit hard to explain). For example, 6 is a triangle number because you can arrange 6 objects into an equilateral triangle:

  1 
 2 3
4 5 6

8 is not a triangle number because 8 objects do not form an equilateral triangle:

   1 
  2 3
 4 5 6
7 8

In other words, the nth triangle number is equal to the sum of the n natural numbers from 1 to n.

Your task:

Check if a given input is a valid triangle number. Return true if it is, false if it is not (note that any non-integers, including non-number types, are not triangle numbers).

You are encouraged to develop an effective algorithm: test cases include really big numbers.

Assumptions:

You may assume that the given input, if it is a number, is always positive.

Notes:

0 and 1 are triangle numbers.

My Submit
func isTriangleNumber(_ number: Int) -> Bool {
  if number < 0 {
    return false
  } else {
    for i in 0...(number/2) {
      if i + i * i == number * 2 {
        return true
      }
      if i + i * i > number * 2 {
        return false
      }
    }
  }
  return true
}
Best Practices
func isTriangleNumber(_ number: Int) -> Bool {
  let val = 0.5 * sqrt(Double(8 * number + 1)) - 0.5
        return rint(val) == val
}
Summary

poor math


Persistent Bugger.

Instructions

Write a function, persistence, that takes in a positive parameter num and returns its multiplicative persistence, which is the number of times you must multiply the digits in num until you reach a single digit.

For example:

 persistence(for: 39) === 3 // because 3*9 = 27, 2*7 = 14, 1*4=4
                       // and 4 has only one digit

 persistence(for: 999) === 4 // because 9*9*9 = 729, 7*2*9 = 126,
                        // 1*2*6 = 12, and finally 1*2 = 2

 persistence(for: 4) === 0 // because 4 is already a one-digit number
My Submit
func persistence(for num: Int) -> Int {
    var number = num
    var times = 0
    while(String(number).characters.count != 1) {
        var sum = 1
        for c in String(number).characters {
            sum *= Int("\(c)")!
        }
        number = sum
        print(sum)
        times += 1
    }
    return times 
}
Best Practices
func persistence(for num: Int) -> Int {
    let digits: [Int] = String(num).characters.flatMap { Int(String($0)) }
    
    return digits.count == 1 ? 0 : 1 + persistence(for: digits.reduce(1, *))
}
Summary

reduce方法;
flatMap方法;
遞歸思想


Multiples of 3 and 5

Instructions

If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.

Finish the solution so that it returns the sum of all the multiples of 3 or 5 below the number passed in.

  • Note: If the number is a multiple of both 3 and 5, only count it once.
My Submit
func solution(_ num: Int) -> Int {
  if num >= 3 {
    var sum = 0
    for i in 3..<num {
      if i % 3 == 0 || i % 5 == 0 {
        sum += i
        continue
      }
    }
    return sum
  }
  return 0
}
Best Practice
func solution(_ num: Int) -> Int {
  var sum = 0
  for i in 0..<num {
    if (i % 3 == 0 || i % 5 == 0) {
      sum += i
    }
  }
  return sum
}
Summary

很簡單的一個(gè)判斷求和的題目榕莺,額外判斷了入?yún)⑿∮谌那闆r,正常做題是不需要考慮的篮绰,算是習(xí)慣吧

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市季惯,隨后出現(xiàn)的幾起案子吠各,更是在濱河造成了極大的恐慌,老刑警劉巖勉抓,帶你破解...
    沈念sama閱讀 206,482評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件走孽,死亡現(xiàn)場離奇詭異,居然都是意外死亡琳状,警方通過查閱死者的電腦和手機(jī)磕瓷,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來念逞,“玉大人困食,你說我怎么就攤上這事◆岢校” “怎么了硕盹?”我有些...
    開封第一講書人閱讀 152,762評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長叨咖。 經(jīng)常有香客問我瘩例,道長,這世上最難降的妖魔是什么甸各? 我笑而不...
    開封第一講書人閱讀 55,273評(píng)論 1 279
  • 正文 為了忘掉前任垛贤,我火速辦了婚禮,結(jié)果婚禮上趣倾,老公的妹妹穿的比我還像新娘聘惦。我一直安慰自己,他們只是感情好儒恋,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,289評(píng)論 5 373
  • 文/花漫 我一把揭開白布善绎。 她就那樣靜靜地躺著,像睡著了一般诫尽。 火紅的嫁衣襯著肌膚如雪禀酱。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,046評(píng)論 1 285
  • 那天牧嫉,我揣著相機(jī)與錄音剂跟,去河邊找鬼。 笑死,一個(gè)胖子當(dāng)著我的面吹牛浩聋,可吹牛的內(nèi)容都是我干的观蜗。 我是一名探鬼主播臊恋,決...
    沈念sama閱讀 38,351評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼衣洁,長吁一口氣:“原來是場噩夢(mèng)啊……” “哼!你這毒婦竟也來了抖仅?” 一聲冷哼從身側(cè)響起坊夫,我...
    開封第一講書人閱讀 36,988評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎撤卢,沒想到半個(gè)月后环凿,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,476評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡放吩,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,948評(píng)論 2 324
  • 正文 我和宋清朗相戀三年智听,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片渡紫。...
    茶點(diǎn)故事閱讀 38,064評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡到推,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出惕澎,到底是詐尸還是另有隱情莉测,我是刑警寧澤,帶...
    沈念sama閱讀 33,712評(píng)論 4 323
  • 正文 年R本政府宣布唧喉,位于F島的核電站捣卤,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏八孝。R本人自食惡果不足惜董朝,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,261評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望干跛。 院中可真熱鬧益涧,春花似錦、人聲如沸驯鳖。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽浅辙。三九已至扭弧,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間记舆,已是汗流浹背鸽捻。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評(píng)論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人御蒲。 一個(gè)月前我還...
    沈念sama閱讀 45,511評(píng)論 2 354
  • 正文 我出身青樓衣赶,卻偏偏與公主長得像,于是被迫代替她去往敵國和親厚满。 傳聞我的和親對(duì)象是個(gè)殘疾皇子府瞄,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,802評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容