Find out how many such pair of letters are there in the word RUST that have as many letters between them in the word as there are between them in the English alphabet: RUST
- AOne
- BTwo
- CThree
- DFour
Solution & Step-by-step Explanation
Let us assign alphabetical positions to each letter in the word :
*
*
*
*
Now, let's scan for valid letter pairs in both forward and backward directions:
1. Forward Direction:
* From : (diff ), (diff ), (diff ). No pair.
* From : (no), (no).
* From : (). In the English alphabet, and are consecutive with zero letters between them, which matches their positions in the word . This is valid pair ().
2. Backward Direction:
* From : (no), (no), (no).
* From : (diff ), (no).
* From : (no).
Thus, there is only one such pair ().
*
*
*
*
Now, let's scan for valid letter pairs in both forward and backward directions:
1. Forward Direction:
* From : (diff ), (diff ), (diff ). No pair.
* From : (no), (no).
* From : (). In the English alphabet, and are consecutive with zero letters between them, which matches their positions in the word . This is valid pair ().
2. Backward Direction:
* From : (no), (no), (no).
* From : (diff ), (no).
* From : (no).
Thus, there is only one such pair ().