Sha256: 241c06343570ae7c7264a0e61f768d846fc70390fc35fd29533c8a60f4622586
Contents?: true
Size: 693 Bytes
Versions: 126
Compression:
Stored size: 693 Bytes
Contents
object Bob { fun hey(input: String): String { val trimmedInput = input.trim() return when { isSilence(trimmedInput) -> "Fine. Be that way!" isShout(trimmedInput) -> "Whoa, chill out!" isQuestion(trimmedInput) -> "Sure." else -> "Whatever." } } private fun isSilence(input: String) = input.isBlank() private fun isQuestion(input: String) = input.endsWith("?") private fun isShout(input: String): Boolean { val isOnlyUppercase = input == input.toUpperCase() val hasLetter = input.contains(Regex("[A-Z]")) return hasLetter && isOnlyUppercase } }
Version data entries
126 entries across 126 versions & 1 rubygems