Sorry, I’m not getting into a comment ...
How many lines, for example, in the factorial function:
int factorial(int n) { // Аккумулятор int r = 1; // Цикл по всем цислам 1..n for(int i = 1; i <= n; ++i) { // Вычисляем произведение r = r * i; } return r; }
Twelve? Or one?
int factorial(int n) { int r = 1; for(int i = 1; i <= n; r*=i++); return r; }
And how do you evaluate the lines of the called system functions?
And what is the criterion - the number of rows. As if fast sorting in 200 lines will work longer than sorting in a choice of 20 lines for, say, a million array.
Convinced ... um ... insolvency of your idea?