Python1 Min Read LetuscrackonJanuary 9, 2026 Isomorphic Strings Given two strings S1 and S2, the program must print if they are isomorphic or not. Two strings are isomorphic if the characters in S1 can be…
C1 Min Read LetuscrackonJanuary 9, 2026 First N Common Characters Two string values S1, S2 are passed as the input. The program must print first N characters present in S1 which are also present in S2. Input…
C Java Python2 Min Read LetuscrackonJanuary 7, 2026 Rotated Triangle Pattern Rotated Triangle PatternGiven an integer N, print the pattern as given in Example Input/Output section.Note: N is always an odd number.…