remove nans fast
There are several ways to locate and remove nans in a matrix, and return an 1d row vector.
In this problem the challenge is ...
8 months ago
Solved
Greater than before
Given an array of integers, write a function that returns elements that are greater than the one before them.
For instance,
...
8 months ago
Solved
What kind of triangle?
Write a function named check_triangle that receives three positive integers as input: a, b, and c.
These three numbers are inte...
9 months ago
Solved
Unique rows
A matrix is given as the input. Remove any duplicate rows from the matrix. keep the first occurrence.