Add a method to Card that creates a full deck of cards, with one card of each combination of rank and suit
So I have been doing the experiments that are in the Apple Swift Book. I have been able to do all of them, except for this one so far. Below is what I have tried, but I can't figure out how to get it working. Add a method to Card that creates a full deck of cards, with one card of each combination of rank and suit. // Playground - noun: a place where people can play enum Rank: Int { case Ace = 1 case Two, Three, Four, Five, Six, Seven, Eight, Nine, Ten case Jack, Queen, King func simpleDescription() -> String { switch self { case .Ace: return "ace" case .Jack: return "jack" case .Queen: return