79191254

Date: 2024-11-15 06:18:09
Score: 0.5
Natty:
Report link

You can also simply use random functions.

import kotlin.random.Random

class RandomValueGenerator {
    val randomValue:Int
        get() = Random.nextInt()
    val randomString: String
        get() = List(10) { Random.nextInt(33,127).toChar() }.joinToString("")
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ozankyncu