Created
July 10, 2014 01:40
-
-
Save rodrickbrown/2acca7a6e2c217fefb1e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SetValidation { | |
var sets: [Dictionary<String, AnyObject>] = [] | |
init(sets: [Dictionary<String, AnyObject>]) { | |
self.sets = sets | |
} | |
func validGroups(group: [Dictionary<String, AnyObject>]) -> Bool { | |
if group.count <= 0 { | |
return false | |
} | |
return true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment