Community Profile

photo

Skarica


Last seen: 27 days ago Active since 2020

Statistics

  • Solver

View badges

Content Feed

View by

Solved


Is my wife right?
Regardless of input, output the string 'yes'.

4 years ago

Solved


Flip the main diagonal of a matrix
Given a n x n matrix, M, flip its main diagonal. Example: >> M=magic(5); >> flipDiagonal(M) 9 24 1 ...

4 years ago

Solved


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

4 years ago