utils.go 309 B

123456789101112131415161718
  1. package main
  2. import "regexp"
  3. // Find all the words in a string
  4. // return [][2]int of index,length
  5. func find_words(text string) [][]int {
  6. word, _ := regexp.Compile("([A-Za-z]+)")
  7. return word.FindAllStringIndex(text, -1)
  8. }
  9. // int version of Abs
  10. func Abs(x int) int {
  11. if x < 0 {
  12. return -x
  13. }
  14. return x
  15. }