I'm having trouble understanding the notation of this pseudocode.
The line in particular I don't understand is:
LeftPart (PartialWord [dot] l, N', limit - 1)
What does the dot represent?
Thank you.
It means "create a new word consisting of the letters in PartialWord followed by an l". (Or more simply, "append l to PartialWord", but I was trying to be clear that PartialWord isn't actually modified.)