Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('your_fcn_name.m')
assert(isempty(strfind(filetext, 'unique')))
assert(isempty(strfind(filetext, 'stable')))
A = [9 2 9 5];
assert(isequal(your_fcn_name(A),unique(A,'stable')))
filetext =
'function y = your_fcn_name(x)
y = x(1);
for c = 2:length(x)
if sum(x(c)==y)==0
y(end+1)=x(c);
end
end
end
%This code written by profile_id 9134567
'
|
2 | Pass |
x = [42 1 1 1 42 17 17];
assert(isequal(your_fcn_name(x),unique(x,'stable')))
|
3 | Pass |
x = rand(1,25);
assert(isequal(your_fcn_name(x),unique(x,'stable')))
|
3892 Solvers
623 Solvers
The Hitchhiker's Guide to MATLAB
2874 Solvers
Getting the indices from a matrice
360 Solvers
664 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!