Strange Pair

Published by Pickle in

A pair of strings form a strange pair if both of the following are true:

  • The 1st string's first letter = 2nd string's last letter.
  • The 1st string's last letter = 2nd string's first letter.

Create a function that returns true if a pair of strings constitutes a strange pair, and false otherwise.

Examples

IsStrangePair("ratio", "orator") ➞ true
// "ratio" ends with "o" and "orator" starts with "o".
// "ratio" starts with "r" and "orator" ends with "r".

IsStrangePair("sparkling", "groups") ➞ true

IsStrangePair("bush", "hubris") ➞ false

IsStrangePair("", "") ➞ true

Notes

It should work on a pair of empty strings (they trivially share nothing).

Watch a quick demo on how Edabit works.