mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
17 lines
200 B
Swift
17 lines
200 B
Swift
public class Problem1: BaseProblem
|
|
{
|
|
override func run() -> Int
|
|
{
|
|
return 1
|
|
}
|
|
}
|
|
|
|
|
|
public class Problem2: BaseProblem
|
|
{
|
|
override func run() -> Int
|
|
{
|
|
return 2
|
|
}
|
|
}
|