Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
16
Task/Rot-13/Swift/rot-13.swift
Normal file
16
Task/Rot-13/Swift/rot-13.swift
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
func rot13char(c: UnicodeScalar) -> UnicodeScalar {
|
||||
switch c {
|
||||
case "A"..."M", "a"..."m":
|
||||
return UnicodeScalar(UInt32(c) + 13)
|
||||
case "N"..."Z", "n"..."z":
|
||||
return UnicodeScalar(UInt32(c) - 13)
|
||||
default:
|
||||
return c
|
||||
}
|
||||
}
|
||||
|
||||
func rot13(str: String) -> String {
|
||||
return String(map(str.unicodeScalars){ c in Character(rot13char(c)) })
|
||||
}
|
||||
|
||||
println(rot13("The quick brown fox jumps over the lazy dog"))
|
||||
Loading…
Add table
Add a link
Reference in a new issue