Skip to content

Instantly share code, notes, and snippets.

View sawafrolov's full-sized avatar

Александр Фролов sawafrolov

  • Devs Vault
  • Saratov
View GitHub Profile
@sawafrolov
sawafrolov / MaxAverageRatio.java
Last active October 28, 2025 05:13
Average pass ratio maximization (leetcode 1792)
import java.util.PriorityQueue;
class StudyClass implements Comparable<StudyClass> {
private int success;
private int all;
private double additionalRatio;