neu-cs4530 / spring24-project-team-208

spring24-project-team-208 created by GitHub Classroom
https://coveytownbattleship.onrender.com/
BSD 3-Clause "New" or "Revised" License
2 stars 0 forks source link

Database implementation for BattleShip #46

Closed mattcasey02 closed 6 months ago

mattcasey02 commented 6 months ago

Implemented the database for Battleship.

Default ELO rank is 1000 and K-factor is 32

mattcasey02 commented 6 months ago

Nice work! Do you think we can round each player's ELO to the nearest whole number or floor it so we don't have trailing values?

Note: I am basing this question on the display shown in the cheat sheet PR, so if it's obsolte, there's no need to change anything.

I think it is better not to round, as this maintains a higher accuracy of the ELO system. We can call Math.round on the frontend to make the display an integer.