Cant find whats wrong in my code

string uniquePrefix(string s){
node* temp = root;
string ans= “”;
for(int i=0;i<s.length();i++){
char c = s[i];
if(temp->children[c]->num==1){
ans = ans+c;
return ans;
}else{
ans = ans+c;
temp = temp->children[c];
}
}
ans = “-1”;
return ans;
}

@rohanmd07 hey can you please share me the question link .

Q Find the unique prefixes in an array of strings(using trie)

@rohanmd07 hey please share the link of question of hackerblocks so that I can submit it.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.