fix: remove print unneeded statements

This commit is contained in:
HerozDotExe 2026-02-08 12:31:59 +01:00
parent bbd31e92e2
commit a7400f910e

View file

@ -25,10 +25,6 @@ public class ELO {
Ra = Ra + K * (outcome - Pa); Ra = Ra + K * (outcome - Pa);
Rb = Rb + K * ((1 - outcome) - Pb); Rb = Rb + K * ((1 - outcome) - Pb);
// Print updated ratings
System.out.println("Updated Ratings:-");
System.out.println("Ra = " + Ra + " Rb = " + Rb);
return new int[] { return new int[] {
(int) Ra, (int) Rb (int) Ra, (int) Rb
}; };