欠如

来世は貝になりたい

2017-08-01から1ヶ月間の記事一覧

なんとなくFizzBuzzの計算をやってみる

よく面談の際にペーパーでFizzBuzzをやらされるのでSwiftでそれっぽい書き方を考える。 FizzBuzz 概要としては 1.3で割り切れる場合は「Fizz」(Bizz Buzzの場合は「Bizz」)、 2.5で割り切れる場合は「Buzz」 3.両者で割り切れる場合(すなわち15で割…

Swiftの文法について復習してみるObjects and Classes

ツアーもやっと中盤まで行きましたね 今回のテーマはObjects and Classes(オブジェクトとクラス)となります。 Objects and Classes Use class followed by the class’s name to create a class. A property declaration in a class is written the same wa…

Swiftの文法について復習してみる Functions and Closures

前回に引き続きツアーをやります 前回がfor in がwhile repeatなど制御などがテーマが今回は第三回目ということでテーマがFunctions and Closures(関数とクロージャ)となります。 クロージャ(クロージャー、英語: closure)、関数閉包はプログラミング言…

Swiftの文法について復習してみるControl Flow

前回に引き続きツアーをやりますね・・・ 今回はControl Flow(制御の流れ)がテーマになります。 Control Flow Use if and switch to make conditionals, and use for-in, while, and repeat-while to make loops. Parentheses around the condition or loo…

Swiftの文法について復習してみるSimple Values

基本はSwift4のReferenceをベースに勉強していきます。 実行環境 IBM Swift Sandbox swift.sandbox.bluemix.net Swift-Ver:Swift Dev. 4.0 (Aug 15, 2017) Platform: Linux (x86_64) About Swift Swiftについては割愛します。 A Swift Tour ツアーですね。 r…