2014年9月8日月曜日

開発環境

Practical Programming: An Introduction to Computer Science Using Python 3 (Pragmatic Programmers) (Paul Gries (著)、Jennifer Campbell (著)、Jason Montojo (著)、Lynn Beighley (編集)、Pragmatic Bookshelf)のChapter 9(Repeating Code Using Loops)、9.10(Exercises) 7.をSwiftで考えてみる。

9.10(Exercises) 7.

コード(Xcode)

main.swift

//
//  main.swift
//  sample7
//
//  Created by kamimura on 9/8/14.
//  Copyright (c) 2014 kamimura. All rights reserved.
//

import Foundation

let country_populations:[Int] = [1295, 23, 7, 3, 47, 21]
var total:Int = 0

for country_population in country_populations {
    total += country_population
}

println(total)

println(country_populations.reduce(0, combine: {(x, y) in x + y}))

println(sum(country_populations))

array.swift

//
//  array.swift
//  array
//
//  Created by kamimura on 8/21/14.
//  Copyright (c) 2014 kamimura. All rights reserved.
//

import Foundation

extension Array {
    func indexAt(i:Int) -> T {
        if i >= 0 {
            return self[i]
        }
        let new_index:Int = self.count + i
        return self[new_index]
    }
    func slice(start:Int = 0, end:Int? = nil) -> Array {
        var new_start = start >= 0 ? start : self.count + start
        var new_end:Int
        if end == nil {
            new_end = self.count
        } else if end! >= 0 {
            new_end = end!
        } else {
            new_end = self.count + end!
        }
        var result:Array = []
        if new_start >= new_end {
            return []
        }
        for i in new_start..<new_end {
            result.append(self[i])
        }
        return result
    }
    func forEach(f:(T) -> ()) {
        for e in self {
            f(e)
        }
    }
}

func sum(nums:[Int]) -> Int {
    return nums.reduce(0, combine: {(x, y) in x + y})
}

入出力結果(Console Output)

1396
1396
1396
Program ended with exit code: 0

0 コメント:

コメントを投稿