Square the input
Given a scalar or vector x, return the square of each element.
Example
x = [7 2]
answer = [49 4]
5 years ago
Solved
MATCH THE STRINGS (2 CHAR) very easy
Match the given string based on first two characters on each string.
For example
A='harsa';
b='harish'; result '1'
...