comments for bob solutions

This commit is contained in:
2026-04-19 00:02:15 -05:00
parent ee7b6b1581
commit fcda1c6e25
5 changed files with 30 additions and 26 deletions

View File

@@ -7,6 +7,7 @@ import java.io.PrintWriter;
import java.util.PriorityQueue;
import java.util.StringTokenizer;
//Correct solution with too much time complexity O(n*n) fails almost every test case to time
public class MaximumAura {
public static void main(String[] args) throws IOException {
@@ -53,7 +54,6 @@ public class MaximumAura {
out.print((left[i] + right[i] - 1) + " ");
}
br.close();
out.flush();