wes d2a2ba9e15 first commit há 4 anos atrás
..
README.md d2a2ba9e15 first commit há 4 anos atrás
code.cpp d2a2ba9e15 first commit há 4 anos atrás
unitTest.cpp d2a2ba9e15 first commit há 4 anos atrás

README.md

Are the Numbers Equal?

by Matt tags: conditions, logic, language_fundamentals

Summary

Create a function that takes two integers and checks if they are equal. Examples isEqual(5, 6) ➞ false isEqual(1, 1) ➞ true isEqual(36, 35) ➞ false Notes N/A

Instructions

Create a function that takes two integers and checks if they are equal.

Examples

isEqual(5, 6) ➞ false

isEqual(1, 1) ➞ true

isEqual(36, 35) ➞ false

Notes

N/A