Concept Flow - DRY (Don't Repeat Yourself)
Identify repeated code
Extract repeated code into one place
Replace repeats with reference
Use the single source everywhere
Maintain code easily
END
The DRY principle means finding repeated code, putting it in one place, and using that single place everywhere to avoid repetition.