You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Michele Sessa 9cdba640f7 docs(iscapitalized): apply prettier 1 year ago
..
README.md docs(iscapitalized): apply prettier 1 year ago

README.md

iscapitalized

Instructions

Write a function IsCapitalized() that takes a string as an argument and returns true if each word in the string begins with either an uppercase letter or a non-alphabetic character.

  • If any of the words begin with a lowercase letter return false.
  • If the string is empty return false.

Expected function

func IsCapitalized(s string) bool {

}

Usage

Here is a possible program to test your function:

package main

import (
	"fmt"
	"piscine"
)

func main() {
	fmt.Println(piscine.IsCapitalized("Hello! How are you?"))
	fmt.Println(piscine.IsCapitalized("Hello How Are You"))
	fmt.Println(piscine.IsCapitalized("Whats 4this 100K?"))
	fmt.Println(piscine.IsCapitalized("Whatsthis4"))
	fmt.Println(piscine.IsCapitalized("!!!!Whatsthis4"))
	fmt.Println(piscine.IsCapitalized(""))
}

And its output:

$ go run .
false
true
true
true
true
false