no more js

This commit is contained in:
2025-12-17 00:48:02 -06:00
parent 169448f156
commit 3211b59408
36 changed files with 2175 additions and 258 deletions

View File

@@ -43,8 +43,8 @@ for (let i = 0; i < 100; i++) {
// Calculate statistics
function getStats(arr) {
def avg = arr.reduce((a, b) => a + b) / arr.length;
def min = Math.min(...arr);
def max = Math.max(...arr);
def min = number.min(...arr);
def max = number.max(...arr);
return { avg, min, max };
}