• May 13, 2025 •rejordon17-9956
0 likes • 0 views
fsfsdfsdfdsfsdf
• Mar 12, 2026 •prakhar.dev101-263b
0 likes • 1 view
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; } } } };
• Oct 8, 2025 •opovolotskyi-7e4a
0 likes • 5 views
var obj = { prop: 1, getProp: function(){ return function () { console.log(this.prop); } }, };
• Jun 1, 2025 •abeRodrz99
0 likes • 3 views
<!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>
• 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
• Mar 29, 2023 •Helper
1 like • 3 views
test