I was given a set of binary number to assemble it into gray code sequence: 111 000 110 011 001 100. Is their a specific way I have to do this? From What I read in the internet I think the following solution would be this:
Gray Code
000
001
011
110
111
100
Is this correct? would this be the final answer? Ive never done this before so Im not sure if this is correct.