• 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; } } } };
• May 1, 2025 •liya5342silver-51c8
0 likes • 1 view
https://github.com/konaraddi/web-riimote?tab=readme-ov-fil
• Dec 9, 2025 •JordanWinston
• Feb 21, 2025 •leafboo
console/log
• Sep 27, 2024 •popeyevn
alert('123');
• Nov 18, 2022 •AustinLeath
0 likes • 11 views
#!/bin/bash yum -y install httpd systemctl enable httpd systemctl start httpd hostname > /var/www/html/index.html