This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 'hello';
y_correct = 5;
assert(isequal(length_of_string(x),y_correct))
|
2 | Pass |
x = 'world!';
y_correct = 6;
assert(isequal(length_of_string(x),y_correct))
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
524 Solvers
351 Solvers
Implement simple rotation cypher
805 Solvers
Matlab Basics II - Create a vector with a repeated entry
137 Solvers
Sum of the Multiplication of Vectors
152 Solvers