Sirisha Challagirisirishachallagiri.hashnode.dev·Nov 28, 20231704. Determine if String Halves Are AlikeYou are given a string s of even length. Split this string into two halves of equal lengths, and let a be the first half and b be the second half. Two strings are alike if they have the same number of vowels ('a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', '...2 likesCode With Sirileetcode
Sirisha Challagirisirishachallagiri.hashnode.dev·Nov 19, 2023Check if the String is PangramA pangram is a sentence containing every letter in the English Alphabet. String s = "abcdefghijklmnopqrstuvwxyz" The above string contains all the alphabet so it is a pangram. public class Panagram { public static void main(String[] args) { Str...Code With SiriPangram