- is there a method to get the Max and Min of an NSMutableArray
- NSNumber* min = [array valueForKeyPath:@"@min.self"];
- NSNumber* max = [array valueForKeyPath:@"@max.self"];
- // the array is mutable, so we can sort inline
- [array sortUsingSelector:@selector(compare:)];