Skip to content
New issue

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

a new challenge alogorithm #765

Closed
KrishAgarwal2811 opened this issue Oct 9, 2021 · 2 comments · Fixed by #907
Closed

a new challenge alogorithm #765

KrishAgarwal2811 opened this issue Oct 9, 2021 · 2 comments · Fixed by #907

Comments

@KrishAgarwal2811
Copy link

@KrishAgarwal2811 KrishAgarwal2811 commented Oct 9, 2021

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

@KrishAgarwal2811
Copy link
Author

@KrishAgarwal2811 KrishAgarwal2811 commented Oct 10, 2021

#766 implements this

@fahimfaisaal
Copy link
Contributor

@fahimfaisaal fahimfaisaal commented Feb 27, 2022

@raklaptudirm could I handle this solution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

3 participants