Many sources note that Longest Palindromic Substring (LPS) can be solved in linearithmic time using hashing and binary search.
Surprisingly, I have not found any sources claiming that LPS can be solved in linear time with hashing, despite such an algorithm being possible and elementary. We'll introduce such an algorithm