Create a function to retrieve the upper triangular matrix of a matrix (without using tril). The matrix will always be square.
Example
If a =
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
then y =
1 2 3 4 0 6 7 8 0 0 11 12 0 0 0 16
nice :)
Fahrenheit to Celsius converter
262 Solvers
1228 Solvers
Let's get back to school, and create multiplication tables
103 Solvers
179 Solvers
281 Solvers
Solution 320752
without using triu function.