Created
November 23, 2013 22:58
-
-
Save hcarreras/7621124 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
+(NSMutableString *) compara : (NSString *) name1 : (NSMutableArray *) asked_clues1 : (NSString *) name2 : (NSMutableArray *) clues2 | |
{ | |
NSMutableString *respuesta; | |
Clue *clueA, *clueB, *some_clue; | |
bool mismo_attr = false; | |
for (clueA in asked_clues1){ | |
for(clueB in clues2){ | |
if(clueA.attr == clueB.attr){ | |
if(clueA.value != clueB.value){ | |
respuesta = [[NSMutableString alloc] initWithString:name2]; | |
[respuesta appendString:@" "]; | |
[respuesta appendString: clueB.question]; | |
return respuesta; | |
} | |
} | |
else{ | |
some_clue = clueA; | |
} | |
} | |
} | |
if(mismo_attr){ | |
respuesta = [[NSMutableString alloc] initWithString:name2]; | |
[respuesta appendString:@" no "]; | |
respuesta appendString: some_clue.question]; | |
} | |
else{ | |
respuesta = nil; | |
} | |
return respuesta; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment