Create a function that takes a string and checks if every single character is preceded and followed by a character adjacent to it in the english alphabet.
Example: "b" should be preceded and followed by ether "a" or "c" (abc || cba || aba || cbc == true but abf || zbc == false).
neighboring("aba") β true
neighboring("abcdedcba") β true
neighboring("efghihfe") β false
neighboring("abc") β true
neighboring("qrstuv") β true
neighboring("mnopqrstsrqponm") β false
All test cases will consist of lower case letters only.