Lernen
Benachbarte Zeichen sind in ihrer Position vertauscht.
Transposition errors occur when two adjacent characters swap positions. This is one of the most common data entry errors, often caused by typing too quickly or by dyslexia. Examples include typing '1324' instead of '1234' or 'hte' instead of 'the'. These errors are subtle because all the correct characters are present.
Original: ABCD → Error: ABDC (C and D swapped)
- 12345 → 12435 (3 and 4 transposed)
- ABCDEF → ABDCEF (C and D transposed)
- AB-1234 → AB-1324 (2 and 3 transposed)
So erkennen Sie es
- Same characters, but two adjacent ones are in reversed order
- Length remains the same
- Often occurs in the middle of strings
Häufige Fehler
- Confusing transposition with substitution
- Missing subtle swaps in long strings
- Not checking adjacent pairs systematically
Schritt-für-Schritt-Lösung
Finden Sie den Fehler: Original '12345' vs Gegeben '12435'
- Position 1 vergleichen: '1' = '1'
- Position 2 vergleichen: '2' = '2'
- Position 3 vergleichen: '3' vs '4' - Abweichung!
- Position 4 vergleichen: '4' vs '3' - Abweichung!
- Position 5 vergleichen: '5' = '5'
- Muster: Positionen 3 und 4 enthalten vertauschte Zeichen
Antwort: Vertauschungsfehler: '3' und '4' an Positionen 3-4 vertauscht