Problem 44096. Matrix game: Winner takes all

Given a matrix A, return a new matrix of the same size in which the biggest element of each column in A takes 1, and 0 for all the others. So if:

input A = [5 4 3;
           1 5 6;
           3 0 9]
output a = [1 0 0;
            0 1 0;
            0 0 1]

Solution Stats

71.64% Correct | 28.36% Incorrect
Last Solution submitted on Jun 21, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers39

Suggested Problems

Community Treasure Hunt

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

Start Hunting!