Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As part of a homework, the professor said that each expressions can have a maximum of 3 levels.

Just to make sure I understand it:

Does the following have 2 levels? ( (a) (b) )

And does the following have 3 levels?

( a ( b (c) ) )

Thanks.

share|improve this question

1 Answer

This is not standard Lisp terminology, so it depends on what the professor means. In particular, is he just counting list nesting, or does he count the leaf objects as a level as well.

What "level" would he consider an atom all by itself (not in a list)? Whatever that is, your first example is 2 more levels, and the second is 3 more.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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