Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 'When you finish the test, you will be told your approximate English level. You can then search for suitable content on LearnEnglish Teens by level. You can also search for content by topic.';
y='When you finish the test, you will be told your approximate English level. You can then search for suitable content on LearnEnglish Teens by level. You can also search for content by topic.';
y_correct = true;
assert(isequal(Comparer(x,y),y_correct))
|
2 | Pass |
x = 'When you finish tee test, you will be told your approximate English level. You can then search for suitable content on LearnEnglish Teens by level. You can also search for content by topic.';
y='When you finish the test, you will be told your approximate English level. You can then search for suitable content on LearnEnglish Teens by level. You can also search for content by topic.';
y_correct = false;
assert(isequal(Comparer(x,y),y_correct))
|
3 | Pass |
x='Hello';
y='Hi';
y_correct = false;
assert(isequal(Comparer(x,y),y_correct))
|
4 | Pass |
x='Hello';
y='Hello';
y_correct = true;
assert(isequal(Comparer(x,y),y_correct))
|
How to find the position of an element in a vector without using the find function
2477 Solvers
Return elements unique to either input
550 Solvers
Matlab Basics - Set unwanted parts of a vector to zero
197 Solvers
Replace every 3rd element in a vector with 4
170 Solvers
113 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!