int findLUSlength(char * a, char * b){ return (!strcmp(a,b))? -1 : (strlen(a)>strlen(b))? strlen(a): strlen(b); }