in reply to comparing list to 2 cells in array

One tip on style, and one tip on substance:

- In general, your comments should express things that aren't obvious from your code. Reiterating what the code is doing actually makes the program less readable, especially when you append the comments to each line. Try commenting at a higher level of abstraction

- You are using the bitwise operator '&' where you almost certainly want the logical comparison operator '&&' in your last if statement.