Applied abstraction

from blog John D. Cook, | ↗ original
“Good general theory does not search for the maximum generality, but for the right generality.” — Saunders Mac Lane One of the benefits of a scripting language like Python is that it gives you generalizations for free. For example, take the function sorted. If you give it a list of integers, it will return […] The post Applied abstraction first...