maze-runnar / interview-preparation-kit

Interview preparation kit of hackerrank solutions
https://maze-runnar.github.io/interview-preparation-kit/
MIT License
192 stars 77 forks source link

Fix timeout error on hackerrank website #117

Open Qambar opened 1 year ago

Qambar commented 1 year ago

This optimized version should be more efficient and less likely to cause a timeout error, as it takes advantage of the set operations provided by Python. The complexity of the function is now O(min(len(s1), len(s2))), which is a significant improvement over the original O(len(s1) * len(s2)) complexity.