I hereby claim:
- I am rgerard on github.
- I am rtg (https://keybase.io/rtg) on keybase.
- I have a public key whose fingerprint is BAFB 9F24 6E18 B70B CFB7 924D 1B55 BF5D 16F0 B330
To claim this, I am signing this object:
Verifying my Blockstack ID is secured with the address 12dryd6NSosUrMQcapZTASjZWtBEpcHnHt https://explorer.blockstack.org/address/12dryd6NSosUrMQcapZTASjZWtBEpcHnHt |
I hereby claim:
To claim this, I am signing this object:
// isValidBST() should return whether or not a given node is a valid binary search tree | |
// | |
// Assumes the following object: | |
// @interface Node | |
// @property (nonatomic) Node *left; | |
// @property (nonatomic) Node *right; | |
// @property (nonatomic) NSNumber *value; | |
// @end | |
- (BOOL)isValidBST(Node *root) { |
#import <Foundation/Foundation.h> | |
@interface NSString (Additions) | |
+ (NSString*)ordinalNumberFormat:(NSNumber *)numObj; | |
@end |