Write a function that returns true if the first string is the second string stretched, and false otherwise. A stretch is to repeat each character in a string the same number of times.
is_stretched("pppaaannndddaaa", "panda") ➞ true
is_stretched("sssshhiipp", "ship") ➞ false
is_stretched("magnet", "magnet") ➞ true
is_stretched("magneto", "magnet") ➞ false