package strutil

import 

// HasSubseq determines whether s has t as its subsequence. A string t is a
// subsequence of a string s if and only if there is a possible sequence of
// steps of deleting characters from s that result in t.
func (,  string) bool {
	for ,  := range  {
		 := strings.IndexRune(, )
		if  == -1 {
			return false
		}
		 = [+len(string()):]
	}
	return true
}