Skip to content

Zipcoder/ZCW-MicroLabs-JavaFundamentals-BitwiseOperator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Bitwise Microlab

In this microlab, we're going to do a bunch of bitwise operations.

The tests are written already and the functions are stubbed out; write the function bodies to make the tests pass.

You should use all of the bit operations at least once. They are:

  • ~ (not)
  • & (and)
  • | (or)
  • ^ (xor)
  • << (bitshift left)
  • >> (bitshift right extending sign bit)
  • >>> (bitshift right ignoring sign bit)

About

Microlab for doing bitwise operations

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages