This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = [ ...
0 1 1 0
1 1 1 0
0 0 1 0
0 0 0 0];
B = [ ...
1 0 1 1
1 0 0 0
0 0 1 1
0 1 1 0];
assert(isequal(gameOfLife(A),B))
|
Find the peak 3n+1 sequence value
790 Solvers
Given an unsigned integer x, find the largest y by rearranging the bits in x
524 Solvers
298 Solvers
177 Solvers
577 Solvers