The code must contain no duplicate code.

Keep the codebase DRY: Don’t Repeat Yourself. Refactor out common code to its own subroutine.
Keep an eye on SPOT: Single Point of Truth. There should only be one place where any algorithm or equation exists. If you need to modify it later, you only need to change it in one place. Otherwise, you’re prone to have bugs where only some instances are updated.
Smaller methods and classes with repeated ideas should be extracted out to their own entities. Future changes only need to happen in one place.