import java.util.*; public class Main { private static String maxGCRatio(String s,int n){ HashMap<Character,Integer> window = new HashMap<>(); int left = 0,right = 0; int start = 0,ratio =Integer.MIN_VALUE; while(right<s.length()){ ...