C Dynamic Programming1 Min Read LetuscrackonJune 10, 2024 Largest Square Sub Matrix with 1s ExampleInput/Output 1:Input:7 51 1 1 0 11 1 0 1 00 1 1 1 11 1 1 1 11 1 1 1 11 1 1 1 10 0 0 0 0 Output:4
C1 Min Read LetuscrackonJune 7, 2024 Sub Palindromes Given a string S, the program must print the count of sub palindromes(with a minimum length of two characters) in the string S. Example 1:…