- You are given a string that contains only lowercase and uppercase alphabets.
- You have to form a string that contains the difference of ASCII values of every two consecutive characters between those characters.
Example 1:
Input: abecd Output: a1b3e-2c1d
Constraints:
1 <= length of string <= 1000