We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 297940c commit 99d09edCopy full SHA for 99d09ed
20. Dynamic Programming/Longest Palindromic Substring.md 20. Dynamic Programming/Longest Palindromic Substring.cpp
@@ -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/
4
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
-```
14
class Solution{
15
string maxStr = "";
16
public:
@@ -46,4 +34,4 @@ string maxStr = "";
46
34
return maxStr;
47
35
}
48
36
};
49
37
+
0 commit comments