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

137 Solutions

37 Solvers

Last Solution submitted on Nov 23, 2025

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...