79252611

Date: 2024-12-04 20:24:54
Score: 0.5
Natty:
Report link
import kotlin.random.Random

fun sortedList(intArray: IntArray) = intArray.filter { it % 2 != 0 }.sorted()

fun main(){
val intArray = IntArray(10) { Random.nextInt(0, 100) }
sortedList(intArray)
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Varun Chandran