Skip to content
#

code-wars-solution

Here are 21 public repositories matching this topic...

A stream of data is received and needs to be reversed. Each segment is 8 bits long, meaning the order of these segments needs to be reversed, for example: 11111111 00000000 00001111 10101010 (byte1) (byte2) (byte3) (byte4) should become: 10101010 00001111 00000000 11111111 (byte4) (byte3) (byte2) (byte1) The total number of bits will always be a…

  • Updated Jul 6, 2022
  • JavaScript

Improve this page

Add a description, image, and links to the code-wars-solution topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the code-wars-solution topic, visit your repo's landing page and select "manage topics."

Learn more