Skip to content

Commit 99d09ed

Browse files
authored
Update and rename Longest Palindromic Substring.md to Longest Palindromic Substring.cpp
1 parent 297940c commit 99d09ed

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

20. Dynamic Programming/Longest Palindromic Substring.md 20. Dynamic Programming/Longest Palindromic Substring.cpp

+1-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,4 @@
1-
# Question Link : https://practice.geeksforgeeks.org/problems/longest-palindrome-in-a-string1956/1/#
2-
> https://practice.geeksforgeeks.org/problems/longest-palindrome-in-a-string3411/1#
3-
> Leetcode : https://leetcode.com/problems/longest-palindromic-substring/
41

5-
## Video Solution ( MINE ) :
6-
> Logic : https://www.youtube.com/channel/UC0s7IzjaMMTbZTBk4c2Lzwg/videos
7-
> Code Walkthrough :
8-
9-
10-
### Solution : ( ACCEPTED )
11-
> two call approach
12-
13-
```
142
class Solution{
153
string maxStr = "";
164
public:
@@ -46,4 +34,4 @@ string maxStr = "";
4634
return maxStr;
4735
}
4836
};
49-
```
37+

0 commit comments

Comments
 (0)