You are given an input list of strings, ordered by ascending length.
Write a function that returns True if, for each pair of consecutive strings, the second string can be formed from the first by adding a single letter either at the beginning or end.
can_build(["a", "at", "ate", "late", "plate", "plates"]) ➞ True
can_build(["a", "at", "ate", "late", "plate", "plater", "platter"]) ➞ False
# "platter" is formed by adding "t" in the middle of "plater"
can_build(["it", "bit", "bite", "biters"]) ➞ False
# "biters" is formed by adding two letters - we can only add one
can_build(["mean", "meany"]) ➞ True
False if a word is NOT formed by adding only one letter.False if the letter is added to the middle of the previous word.