You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

293 B

reversebits

Instructions

Écrire une fonction qui prend un byte, qui l'inverse bit par bit (comme sur l'exemple) et qui retourne le résultat.

Fonction attendue

func ReverseBits(octet byte) byte {

}

Exemple:

1 byte


00100110
   ||
   \/
01100100