wes d2a2ba9e15 first commit 4 years ago
..
README.md d2a2ba9e15 first commit 4 years ago
code.cpp d2a2ba9e15 first commit 4 years ago
unitTest.cpp d2a2ba9e15 first commit 4 years ago

README.md

Flip the Boolean

by Helen Yu tags: logic, conditions, language_fundamentals

Summary

Create a function that reverses a boolean value. Examples reverse(true) ➞ false reverse(false) ➞ true Notes Don't forget to return the result. If you get stuck on a challenge, find help in the Resources tab. If you're really stuck, unlock solutions in the Solutions tab.

Instructions

Create a function that reverses a boolean value.

Examples

reverse(true) ➞ false

reverse(false) ➞ true

Notes

  • Don't forget to return the result.
  • If you get stuck on a challenge, find help in the Resources tab.
  • If you're really stuck, unlock solutions in the Solutions tab.