Alex Pop

Results 2 comments of Alex Pop

In 2015, unsorted lists are not acceptable in my opinion. Look at the products we use on a daily basics, how many give us unsorted lists? It's one of those...

A quick stab at it: ```go func IsValidKsuid(str string) bool { re := regexp.MustCompile("^[a-zA-Z0-9]{27}$") return re.MatchString(str) } ```