|
|
%!s(int64=5) %!d(string=hai) anos | |
|---|---|---|
| .. | ||
| README.md | %!s(int64=5) %!d(string=hai) anos | |
| code.cpp | %!s(int64=5) %!d(string=hai) anos | |
| unitTest.cpp | %!s(int64=5) %!d(string=hai) anos | |
by Helen Yu tags: strings, validation, language_fundamentals
Create a function that returns true if a string is empty and false otherwise. Examples isEmpty("") ➞ true isEmpty(" ") ➞ false isEmpty("a") ➞ false Notes A string containing only whitespaces " " does not count as empty. 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 solutio
Create a function that returns true if a string is empty and false otherwise.
isEmpty("") ➞ true
isEmpty(" ") ➞ false
isEmpty("a") ➞ false
" " does not count as empty.return the result.