79638024

Date: 2025-05-25 20:09:09
Score: 1
Natty:
Report link
fun countExactMatches(secret: String, guess: String) {
    val result = guess.filterIndexed { index, symbol -> secret[index] == symbol }
    println("Your result is $result, with ${result.length} out of ${secret.length} ")
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: biTToe