Impara
Una sequenza di 3 o più caratteri adiacenti è invertita.
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)
Come riconoscerlo
- Three or more characters appear in reverse order
- Length remains the same
- All original characters are present
Errori comuni
- Confusing with multiple transpositions
- Not recognizing partial reversals
- Missing the reversal pattern in mixed data
Soluzione passo per passo
Trovare l'errore: Originale 'AB-1234' vs Dato 'AB-3214'
- Confrontare prefisso: 'AB-' = 'AB-'
- Confrontare posizione 4: '1' vs '3' - differenza
- Confrontare posizione 5: '2' = '2'
- Confrontare posizione 6: '3' vs '1' - differenza
- Confrontare posizione 7: '4' = '4'
- Schema identificato: '123' invertito in '321'
- È un'inversione di 3 caratteri, non una semplice trasposizione
Risposta: Errore di inversione: sequenza '123' invertita in '321' (posizioni 4-6)