Skip to content

Instantly share code, notes, and snippets.

@guyguyon
Created December 4, 2017 11:48
Show Gist options
  • Select an option

  • Save guyguyon/18d91ca8deb8d93c98d34dc7954ab026 to your computer and use it in GitHub Desktop.

Select an option

Save guyguyon/18d91ca8deb8d93c98d34dc7954ab026 to your computer and use it in GitHub Desktop.
// Java
public boolean isEmpty(String s) {
  return s.length() == 0;
}
# ruby
def empty?(s)
  return s.size == 0
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment