Description

This problem is the inverse of Problem 136: Read a Soroban Abacus. Provided an N-digit integer, return a logical matrix of size 7xN that symbolizes the input number.

Example

    x = 10586;
    y = [ 1 1 0 0 0
          0 0 1 1 1
          1 0 0 1 1
          0 1 1 1 0
          1 1 1 1 1
          1 1 1 0 1
          1 1 1 1 1 ];

Solution Stats

144 Solutions

39 Solvers

Last Solution submitted on May 11, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...