Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exceeding words are words where the gap between two adjacent characters is increasing. The gap is the distance in ascii
Example:
input = update output = False
Explanation : from u to p: 5 from p to d: 12 from d to a: 3 from a to t: 19 from t to e: 15
5,12,3,19,15 is not increasing. The word "update" is not an Exceeding Word
The text was updated successfully, but these errors were encountered:
#766 implements this
Sorry, something went wrong.
@raklaptudirm could I handle this solution.
CheckExceeding
fahimfaisaal
Successfully merging a pull request may close this issue.
Exceeding words are words where the gap between two adjacent characters is increasing.
The gap is the distance in ascii
Example:
input = update
output = False
Explanation :
from u to p: 5
from p to d: 12
from d to a: 3
from a to t: 19
from t to e: 15
5,12,3,19,15 is not increasing.
The word "update" is not an Exceeding Word
The text was updated successfully, but these errors were encountered: