What's the problem in code? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What's the problem in code?

°Code is meant to search 2 elements in array °If both element are found it will display both found °If no element found it will display not found °If 1 element is found then it will display that element found e.g.(3 Found!!) °I have certain restriction for this code 1• Only one loop 2• There should be no break in code 3• Only two variables (1 for array) and (2 for loop) Note: Everyone is telling me about one found but i want that parameter like (num1+" found ") https://code.sololearn.com/W70HIt5lquf7/?ref=app

21st Jun 2019, 12:55 PM
Zainab Idrees
Zainab Idrees - avatar
3 Answers
0
I would initialise show to " " and in your second if: if ((num1===arr[i] && show[0] == num2) || (num2===arr[i] && show[0]==num1)) This will make sure you found 1, then it will check if the other has been found too.
21st Jun 2019, 1:11 PM
Jackson O’Donnell
0
It is still not working
21st Jun 2019, 1:15 PM
Zainab Idrees
Zainab Idrees - avatar
0
Is this what you need it to output? https://code.sololearn.com/WGSp47sxk7NR/?ref=app
21st Jun 2019, 1:49 PM
Russ
Russ - avatar