Cracking Interviews Exposed
Friday, January 18, 2008
Giving Two Strings, Find out whether they are Anagrams(made up of same chars) or not?
If(strlen(Str1)!=strlen(Str2)) return FALSE;
sort both Str1,Str2.
If(str1==str2) return TRUE;
else
return FALSE;
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment