Nah0dakSK / Open-Lab-02.08

(6 XP) A function that checks if a string is empty.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Open-Lab-02.08

(6 XP) A function that checks if a string is empty.

  1. Fork this repository to your GitHub account.
  2. Open solution file in Visual Studio.
  3. Open file Checker.cs.
  4. Implement the method IsEmpty(string str) that checks if a string is empty.
  5. Run with CTRL+F5 to test it.
  6. If all tests are passed, commit & sync your repository.
  7. Send a link to your repository for Lab Master (in #slack) to check it.

Examples:

IsEmpty("") ➞ true
IsEmpty(" ") ➞ false
IsEmpty("a") ➞ false
IsEmpty("GitHub") ➞ false

About

(6 XP) A function that checks if a string is empty.

License:MIT License


Languages

Language:C# 100.0%