Given two numeric inputs a and b, return a row vector that contains the numbers found in only a or only b, but not both. For example, the inputs:
a=[1 2 3 4 5];
b=[2 3 4 5 6];
would return [1 6], as 2, 3, 4 and 5 are in both a and b, and can therefore be eliminated. Please sort the returned vector in order from lowest to highest.
You may assume that there is at least one value that meets these criteria in a or b, and there are no NaN or Inf values in either a or b.
Your description says the inputs will be vectors, but your test suite includes matrices.
+1
Apologies for the incorrect terminology. The description has been updated.
Test suit is giving error even though logic is working
Test suite is not properly managed. I am getting the correct result for the Solution 1607662
Hello, there is a problem with test suits 3, 5 and 6.
Please correct them.
Never mind, my result was not a row vector.
When I run this solution in my local workspace, I pass... More investigation to be done.
7276 Solvers
Remove any row in which a NaN appears
5982 Solvers
402 Solvers
1233 Solvers
237 Solvers