sanyamjain036 / HacktoberFest2022

In this repository, you can find the solutions (as source code) for the problems in LeetCode.
MIT License
3 stars 61 forks source link

LC_2131 problem : Longest Palindrome by Concatenating Two Letter Words #63

Closed Sreetama2001 closed 1 year ago

Sreetama2001 commented 1 year ago

2 issue

This is a string-based problem and the tags are

palindrome , hash table , string,greedy, counting

Question _link

Solution_link

Time Complexity : $O(n)$

Space Complexity : $O(1)$

Sreetama2001 commented 1 year ago

@sanyamjain036 It is a fully working code with comments.