(Spoiler alert for other readers)
–
–
–
–
–
The “unchanged” condition compares the current text value against the text input. If they’re equal, it’s considered to be unchanged. So if we start with “abc” and rotate it twice, it’ll go through abc->cba->abc
, the unchanged condition would be “true”. Otherwise it would be false.