+ 3
Why my solution isn't completely right, i mean No3?
If you don't mind, check my codes plz 🤗 https://code.sololearn.com/c81Sra6OUa0v/?ref=app
5 odpowiedzi
+ 3
Please show your code here. First save on SL Playground and provide a link here.
+ 3
I found out, for example for
Grr Chirp
the answer is
Bird Lion
but should
Lion Bird
+ 1
Thz your answer , my loop is wrong , inner and outer
+ 1
You need to change the sequence of the loops:
for(int i=0;i<arr.Length;i++){
foreach(KeyValuePair<string, string> ele1 in mydict){
if(arr[i] == ele1.Key)
answer = answer+ele1.Value+" ";
}
}
+ 1
Thz for your answer , I will correct that