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
14
Task/Man-or-boy-test/Swift/man-or-boy-test-1.swift
Normal file
14
Task/Man-or-boy-test/Swift/man-or-boy-test-1.swift
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
func A(k: Int, _ x1: () -> Int, _ x2: () -> Int, _ x3: () -> Int, _ x4: () -> Int, _ x5: () -> Int) -> Int {
|
||||
var k1 = k
|
||||
func B() -> Int {
|
||||
k1-=1
|
||||
return A(k1, B, x1, x2, x3, x4)
|
||||
}
|
||||
if k1 <= 0 {
|
||||
return x4() + x5()
|
||||
} else {
|
||||
return B()
|
||||
}
|
||||
}
|
||||
|
||||
print(A(10, {1}, {-1}, {-1}, {1}, {0}))
|
||||
14
Task/Man-or-boy-test/Swift/man-or-boy-test-2.swift
Normal file
14
Task/Man-or-boy-test/Swift/man-or-boy-test-2.swift
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
func A(var k: Int, x1: () -> Int, x2: () -> Int, x3: () -> Int, x4: () -> Int, x5: () -> Int) -> Int {
|
||||
var B: (() -> Int)!
|
||||
B = {
|
||||
k--
|
||||
return A(k, B, x1, x2, x3, x4)
|
||||
}
|
||||
if k <= 0 {
|
||||
return x4() + x5()
|
||||
} else {
|
||||
return B()
|
||||
}
|
||||
}
|
||||
|
||||
println(A(10, {1}, {-1}, {-1}, {1}, {0}))
|
||||
Loading…
Add table
Add a link
Reference in a new issue