• Oct 15, 2022 •CodeCatch
0 likes • 1 view
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
• Aug 17, 2025 •shekhar771
0 likes • 8 views
dzdzvcsd,
• Mar 12, 2026 •prakhar.dev101-263b
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 30, 2025 •kimdylan05-04cd
refre
• 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
• Apr 26, 2025 •C S
0 likes • 3 views
[*.cs] indent_style = space indent_size = 2 tab_width = 2 csharp_new_line_before_open_brace = none