likecs/Competitive-Coding

1-based indexing in kmp algorithm

swapnil159 opened this issue · 0 comments

I ran the kmp function on the following strings-
p="wa" and t="swapwap"
The function returned 3 and 6 as positions but according to 0-based indexing as mentioned, it should return 2 and 5.
So i think you should change the description or i-l should be i-l-1