Aprender
Una secuencia de 3 o más caracteres adyacentes está invertida.
Reversal errors occur when a portion of the string (typically 3-4 characters) is written in reverse order. This can happen when transcribing data from memory or when the eye jumps back while reading. Unlike simple transposition which swaps just two characters, reversal affects a longer sequence.
Substring ABC becomes CBA within the string
- 123456 → 132456 (123 reversed to 321, shown as 132)
- ABCDEF → ACBDEF (BCD reversed)
- AB-1234 → AB-3214 (1234 partially reversed)
Cómo reconocerlo
- Three or more characters appear in reverse order
- Length remains the same
- All original characters are present
Errores comunes
- Confusing with multiple transpositions
- Not recognizing partial reversals
- Missing the reversal pattern in mixed data
Resolución paso a paso
Encuentre el error: Original 'AB-1234' vs Dado 'AB-3214'
- Comparar prefijo: 'AB-' = 'AB-'
- Comparar posición 4: '1' vs '3' - diferencia
- Comparar posición 5: '2' = '2'
- Comparar posición 6: '3' vs '1' - diferencia
- Comparar posición 7: '4' = '4'
- Patrón identificado: '123' fue invertido a '321'
- Es una inversión de 3 caracteres, no simple transposición
Respuesta: Error de inversión: secuencia '123' invertida a '321' (posiciones 4-6)