Μάθηση
Μια ακολουθία 3 ή περισσότερων γειτονικών χαρακτήρων έχει αντιστραφεί.
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)
Πώς να το αναγνωρίζετε
- Three or more characters appear in reverse order
- Length remains the same
- All original characters are present
Συνηθισμένα λάθη
- Confusing with multiple transpositions
- Not recognizing partial reversals
- Missing the reversal pattern in mixed data
Λύση βήμα προς βήμα
Βρείτε το σφάλμα: Αρχικό 'AB-1234' vs Δοθέν 'AB-3214'
- Σύγκριση προθέματος: 'AB-' = 'AB-'
- Σύγκριση θέσης 4: '1' vs '3' - διαφορά
- Σύγκριση θέσης 5: '2' = '2'
- Σύγκριση θέσης 6: '3' vs '1' - διαφορά
- Σύγκριση θέσης 7: '4' = '4'
- Μοτίβο αναγνωρίστηκε: '123' αντιστράφηκε σε '321'
- Πρόκειται για αντιστροφή 3 χαρακτήρων, όχι απλή αντιμετάθεση
Απάντηση: Σφάλμα αντιστροφής: ακολουθία '123' αντιστράφηκε σε '321' (θέσεις 4-6)