i1 : T = skewTableau(new Partition from {6,3,2}, new Partition from {2}, toList(10..18))
┌────┬────┬────┬────┐
o1 = │ 10 │ 11 │ 12 │ 13 │
┌────┬────┼────┼────┴────┴────┘
│ 14 │ 15 │ 16 │
├────┼────┼────┘
│ 17 │ 18 │
└────┴────┘
o1 : SkewTableau
|
i2 : theList = positionList T
o2 = {(0, 2), (0, 3), (0, 4), (0, 5), (1, 0), (1, 1), (1, 2), (2, 0), (2, 1)}
o2 : List
|
i3 : T' = skewTableau(new Partition from {6,3,2}, new Partition from {2}, theList)
┌───────┬───────┬───────┬───────┐
o3 = │ (0,2) │ (0,3) │ (0,4) │ (0,5) │
┌───────┬───────┼───────┼───────┴───────┴───────┘
│ (1,0) │ (1,1) │ (1,2) │
├───────┼───────┼───────┘
│ (2,0) │ (2,1) │
└───────┴───────┘
o3 : SkewTableau
|