I've had various discussions on whether it's possible to write a one line algorithm to solve a number of simple problems (e.g. check if a number is prime/power of 2/..), but was wondering if there is any known limits to what you can and can't do with a single line of code?

I know that the concept of a "line of code" is pretty abstract, but I guess one cross-language definition could be say - 80 8-bit characters, (although I suppose you could argue that a single statement would be more appropriate most of the time).

If limits are known, are there any concrete ones with real languages that people actually program with or is it all just theory? If not, is it just that the problem is too woolly or is it that know one knows how to do it?

link|improve this question

71% accept rate
Check out codegolf.stackexchange.com – aix Jan 27 at 13:31
3  
With 80 8-bit characters you can write (2^8)^80 distinct lines. So, the limit of what you can do with one line is 45624406176221952186411716057002913248932285072485599305791925178992751672086773‌​865059128113173713997786423095735944073106887047213754379982526613197222141882519‌​94674360264950082874192246603776 different algorithms. – Ishtar Jan 27 at 13:42
feedback

closed as not a real question by Mat, Marcin, Ishtar, amit, user unknown Jan 27 at 14:10

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

up vote 2 down vote accepted

It's not that "line of code" is abstract, it is a concrete concept that is specific to the language in question.

In any case, in any language with function calls, it is possible to do:

def most_complex_algorithm_ever(*blah):
 # do stuff

most_complex_algorithm_ever(whatevs) #one line of code

So, clearly in such a language, there is no limit to what can be done on a single line. If for whatever reason you want to disallow function calls, you will need to draw up a consistent, principled definition of a "single line" and explain why it is interesting.

If you think a function call doesn't define behaviour, then try on:

combine_complex_results(half_of_most_complex_algorithm(whatevs_a), other_most_complex_half(whatevs_b))
link|improve this answer
But the line itself is just calling a function - it is not defining the algorithm itself. I suppose that you could argue that all languages require libraries and it is these libraries that give the language it's power. Perhaps the question need to be formulated more succinctly! – Mark Rhodes Jan 27 at 13:35
@MarkRhodes: What's your point? – Marcin Jan 27 at 13:36
@MarkRhodes Then you will need to specify what you mean to be a single line of code, if not any single line of code in the language in question. – prelic Jan 27 at 13:39
@Marcin thanks for this answer - thinking about it obviously you can solve all problems in one line by just calling another function which gives you the answer, like you said. However, you could then argue that the line does not fully encapsulate all the required steps in the language itself (since you're not including the code which you called). But then I guess you could then say that you could alter the definition of the language itself to include the algorithms behavior - but then where does that lead? – Mark Rhodes Jan 27 at 14:11
You could then just continue to add an algorithm to every problem that comes along, but then you get to a point where you can't actually describe which algorithm to pick in the single line. So I suppose then that if you pick the appropriate language you will be able to solve any individual solvable problem in a line of code but there will always be things that you can not solve in a line. I suppose there must then be an "ultimate language" which is then able to solve the largest number of possible problems in a "single line", however it will still be limited. – Mark Rhodes Jan 27 at 14:11
show 3 more comments
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.