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)
len = length(x)
temp = ones(1,len)
for i = 1:len
for j = i+1:len
if x(i) == x(j)
temp(j) = 0 ;
end
end
end
y = x(logical(temp));
end
%This code written by profile_id 8530779
'
len =
4
temp =
1 1 1 1
|
2 | Pass |
x = [42 1 1 1 42 17 17];
assert(isequal(your_fcn_name(x),unique(x,'stable')))
len =
7
temp =
1 1 1 1 1 1 1
|
3 | Pass |
x = rand(1,25);
assert(isequal(your_fcn_name(x),unique(x,'stable')))
len =
25
temp =
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
Make a random, non-repeating vector.
2796 Solvers
Given a window, how many subsets of a vector sum positive
743 Solvers
376 Solvers
228 Solvers
260 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!