algorithms icon indicating copy to clipboard operation
algorithms copied to clipboard

[Oops.] Missing right-square-bracket in LISBigger pseudocode

Open jjolly opened this issue 6 years ago • 0 comments

Please verify that the error is present in the most recent revision before reporting.

Chapter number or note title: Error in Chapter 2, Section 2.6

Page number: Error at the top of page 88

Error description: Line 4 of the pseudocode for the LISBigger algorithm appears like so:

    return LISbigger(prev,A[2..n)

Suggested fix (if any): The line should appear:

    return LISbigger(prev,A[2..n])

Note the addition of the right-square-brace at the penultimate character.

jjolly avatar Sep 12 '19 17:09 jjolly