This looks like a or a typing exercise that goes:

Specifically, the QWERTY keyboard rows (lowercase, ignoring shift):

So first half = rev(bottom) + rev(middle) + rev(top) = mnbvcxz + lkjhgfdsa + poiuytrewq = exactly positions 1–26 (since 7+9+10=26). And indeed that matches given string start: mnbvcxzlkjhgfdsapoiuytrewq — check: after mnbvcxz comes lkjhgfdsa — yes, then poiuytrewq — yes.

Reverse bottom row: mnbvcxz (that's zxcvbnm reversed — wait, careful: bottom row reversed from right to left is mnbvcxz ? Let's reverse zxcvbnm → m n b v c x z — yes, correct) Then reverse middle row: lkjhgfdsa (reverse of asdfghjkl ) Then reverse top row: poiuytrewq (reverse of qwertyuiop )

: The bottom, middle, and top rows typed from right-to-left. qwertyuiop / asdfghjkl / zxcvbnm

Join Our Mailing List