Find the missing permutation: Difference between revisions

Added XPL0
(Added XPL0)
Line 1,365:
<pre>
DBAC
</pre>
 
=={{header|XPL0}}==
The list of permutations is input by using a command line like this: missperm <missperm.txt
 
<lang XPL0>code HexIn=26, HexOut=27;
int P, I;
[P:= 0;
for I:= 1 to 24-1 do P:= P xor HexIn(1);
HexOut(0, P);
]</lang>
 
{{out}}
<pre>
0000DBAC
</pre>
772

edits