-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path13-Command.swift
42 lines (35 loc) · 869 Bytes
/
13-Command.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Implement the 'Account.process(_ command: Command)' function to process
// withdraw and deposit actions. Remember, 'success' must be true only when a successful
// command has been processed.
import Foundation
enum Action {
case deposit
case withdraw
}
class Command {
var action: Action
var amount: Int
var success = false
init(_ action: Action, _ amount: Int) {
self.action = action
self.amount = amount
}
}
class Account {
var balance = 0
func process(_ command: Command) {
switch command.action {
case .deposit:
balance += command.amount
command.success = true
case .withdraw:
let newBalance = balance - command.amount
if newBalance >= 0 {
balance = newBalance
command.success = true
} else {
command.success = false
}
}
}
}