Problem 824. Set the array elements whose value is 13 to 0
Input A either an array or a vector (which can be empty)
Output B will be the same size as A . All elements of A equal to 13 (if any) must be replaced by zero.
For example:
A = [15 13 3]
output B is:
B= [15 0 3]
The difficulty in this problem is that the following commands FOR , WHILE , FIND and IND2SUB cannot be used.
Solution Stats
Problem Comments
-
3 Comments
Isha Desai
on 11 Oct 2017
this is a good problem
Asif Newaz
on 25 Nov 2019
damn man!!! i just tore my head off to solve this then i figured there is a very very simple way to do that
Israt Jahan
on 21 Jun 2020
A simple yet good problem. It made me think outside of using if and for loop.
Solution Comments
Show commentsProblem Recent Solvers1412
Suggested Problems
-
Sort a list of complex numbers based on far they are from the origin.
5729 Solvers
-
1548 Solvers
-
17170 Solvers
-
636 Solvers
-
Area of an equilateral triangle
6618 Solvers
More from this Author30
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!