Sha256: 5b9d51b562d8f4762f5077450305014238c93e4ba7051daa1b9e2980e59c5917
Contents?: true
Size: 245 Bytes
Versions: 255
Compression:
Stored size: 245 Bytes
Contents
package isogram import "strings" const testVersion = 1 func IsIsogram(word string) bool { for i, r := range strings.ToLower(word) { if r != ' ' && r != '-' && i < strings.LastIndex(word, string(r)) { return false } } return true }
Version data entries
255 entries across 255 versions & 1 rubygems