package space.dezentrale.prgrnd class SumOfSquares { fun calculate(intArray: IntArray): Int { return intArray.sumOf { it * it } } }