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 ans = your_fcn_name(x)
x(end:-1:1);
[~,b] = ismember(ans,ans);
ans(b==1:numel(b));
ans(end:-1:1);
end
%This code written by profile_id 870595
|
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')))
|
1611 Solvers
3310 Solvers
1403 Solvers
Given an unsigned integer x, find the largest y by rearranging the bits in x
525 Solvers
Back to basics 22 - Rotate a matrix
682 Solvers