Description:

Determine if the elements of an input array are triangle numbers and return the result as an array with the same dimensions as the input.

Example:

    Input  = [ 1 2 3 ];
    Output = [ 1 0 1 ];

Solution Stats

1281 Solutions

400 Solvers

Last Solution submitted on Jun 08, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...