Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1234; 23; 14; 12];
y_correct = [1 1 1 1; 0 1 1 0; 1 0 0 1; 1 1 0 0];
assert(isequal(integer2boolean(x),y_correct))
|
2 | Pass |
%%
x = [16; 14; 23; 26; 13; 46; 56];
y_correct = [1 0 0 0 0 1
1 0 0 1 0 0
0 1 1 0 0 0
0 1 0 0 0 1
1 0 1 0 0 0
0 0 0 1 0 1
0 0 0 0 1 1];
assert(isequal(integer2boolean(x),y_correct))
|
3 | Pass |
%%
x = [1234; 14; 13; 12; 34; 24];
y_correct = [1 1 1 1
1 0 0 1
1 0 1 0
1 1 0 0
0 0 1 1
0 1 0 1];
assert(isequal(integer2boolean(x),y_correct))
|
Calculate the Levenshtein distance between two strings
303 Solvers
116 Solvers
157 Solvers
Matrix which contains the values of an other matrix A at the given locations.
195 Solvers
152 Solvers