• Mar 12, 2026 •prakhar.dev101-263b
0 likes • 2 views
class Solution { public: bool isGoodLength(int len, string& s) { } string longestPalindrome(string s) { int l = 1; // a string of length 1 can always be a pallindrome int r = s.length() + 1; // it is impossible to find a string of length s.length() + 1, leave alone pallindromic while(r > l + 1) { int mid = l + (r - l) / 2; if(isGoodLength(mid, s)) { l = mid; } else { r = mid; } } } };
• Aug 17, 2025 •shekhar771
0 likes • 8 views
dzdzvcsd,
• Mar 14, 2025 •melikdev
0 likes • 3 views
console.log('hello world')
• Dec 9, 2025 •JordanWinston
• Jun 1, 2025 •abeRodrz99
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> </body> </html>
• Jan 10, 2025 •alexandr.zaikin.9999-c10d
import os