I'm reading "Introduction to Algorithms",the author refers to "tight code" several times. Does "tight" only means there are lesser code to write to implement one algorithm compared to another?
In the book, the author says that insertion sort and quicksort both have "tight code" which makes the algorithms faster. For example, quicksort is faster than heapsort in general although their time complexity are the same.
Of course, I don't think "tight code" means writing code without proper formatting, extra spaces, blank line.