I have the following list:
list = {{114}, {59, 55}, {31, 28, 27}, {17, 14, 14, 13}}
The list data should be placed into a grid this way:
How can I fill and draw such a grid?
I have the following list:
list = {{114}, {59, 55}, {31, 28, 27}, {17, 14, 14, 13}}
The list data should be placed into a grid this way:
How can I fill and draw such a grid?
Grid/Columnand friends? p.s. Visualize Pascal's triangle, 73000 – Kuba Mar 20 '17 at 12:52Column[Grid[{#}, Frame -> All] & /@ list, Alignment -> Center, Spacings -> 0]– Jason B. Mar 20 '17 at 13:03Spacings -> -0.1in Jason's code looks even better on my system. – Mr.Wizard Mar 20 '17 at 13:06