Problem 2045. Only once: cleaning up your columns

We have a logical array (with ones and zeroes). It is simple: after processing every column may only contain a single true value, or none at all. Not on any row, but only the uppermost occurrence in the input array, if any.

For example:

 [ 0 0 1 1
   0 1 0 1
   0 0 1 1 ] 
becomes 
 [ 0 0 1 1
   0 1 0 0
   0 0 0 0 ] 

And of course, your solution should be the most innovative, shortest and most elegant one.

Solution Stats

59.65% Correct | 40.35% Incorrect
Last Solution submitted on Nov 26, 2022

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers30

Suggested Problems

More from this Author31

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!