Write a function to draw dominos. The number on each side can range from 0 to 9. For example, for an input of [3,7], your function should return the following character array:

 '     o | o o o '
 '   o   |   o   '
 ' o     | o o o '

Each answer will be composed entirely of three characters: " " (space), o, and |. See the test suite for additional examples.

Solution Stats

45 Solutions

23 Solvers

Last Solution submitted on Nov 13, 2025

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...