0
votes
Palindrome detection efficiency
With Python, short code can be faster since it puts the load into the faster internals of the VM (And there is the whole cache and other such things)
def ispalin(x):return all(x[a]==x[-a-1] for a i …
