Skip to content

Instantly share code, notes, and snippets.

@sasssass
Created October 16, 2023 22:07
Show Gist options
  • Save sasssass/13935b3a083ffdc6ecb61caac6e462a2 to your computer and use it in GitHub Desktop.
Save sasssass/13935b3a083ffdc6ecb61caac6e462a2 to your computer and use it in GitHub Desktop.
Declarative.kt
fun sumOfEvenNumbers(numbers: List<Int>): Int {
return numbers.filter { it % 2 == 0 }.sum()
}
fun main() {
val numbers = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
val result = sumOfEvenNumbers(numbers)
println("Sum of even numbers: $result")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment