If NaN occupies less than half of the input data, return 1, otherwise return 0.

eg.

input x = [1 2 NaN ; 4 NaN 6] >>> output y = 1

input x = [NaN 2 NaN ; NaN NaN 6] >>> output y = 0

Solution Stats

101 Solutions

54 Solvers

Last Solution submitted on May 29, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...