You LOVES Matlab 41%
Given two strings, determine the percentage that one loves the other in the following way:
YOU
LOVES
MATLAB
there is 1 '...
5 years ago
Solved
Obscured by Earth
Given two points in <http://en.wikipedia.org/wiki/Earth-centered_inertial ECI> reference frame, check wheather they are in line-...
5 years ago
Solved
Kepler's Equation
Solve <http://en.wikipedia.org/wiki/Kepler's_equation Kepler's Equation>.
Note that the solution is rounded down to 5 decima...
5 years ago
Solved
Some Assembly Required
The input to this function is a matrix of real numbers. Your job is to assemble the rows of the matrix into one large row that ...
Zigzag of square matrix
find zigzag of square matrix in one dimension array
a=[1 2 3;4 5 6;7 8 9];
should return
b= [1 2 4 7 5 3 6 8 9]
5 years ago
Solved
Count from 0 to N^M in base N.
Return an array of numbers which (effectively) count from 0 to N^M-1 in base N. The result should be returned in a matrix, with ...
5 years ago
Solved
QWERTY Shift Code Decoder
Decode a string encoded using the QWERTY shift code.
QWERTY shift code is where the message was touch typed but with an offse...
5 years ago
Solved
QWERTY Shift Encoder
Encode a string using the QWERTY shift code.
This code is where you touch type but are offset by one character to the right.
...