If I have the result
{{Position, {Code}},
{1, {0000, 0001}},
{2, {0100, 0011}},
{3, {0110, 0111}},
{4, {1000, 1001}},
{5, {1100,1011}},
{6, {1110, 1111}}}
and I want it to be
{{Position, Code},
{1, 0000, 0001},
{2, 0100, 0011},
{3, 0110, 0111},
{4, 1000, 1001},
{5, 1100, 1011},
{6, 1110, 1111}}
I tried
//.{x_,{y_}}:> {x,y}
but that seems to work only for the first element.
Any help would be appreciated Thanks.



