Skip to content

Instantly share code, notes, and snippets.

View ikovalyov's full-sized avatar

Illia Kovalov ikovalyov

View GitHub Profile
val transitions = listOf(
ValidateRequest(),
ProcessRequest(),
ValidateResponse()
)
fun processRequest(input: Int): Int {
val initial = State.RequestReceived(input)
val result = transitions.fold(initial)
return if (result.validationResult) {
result.previousState.response
} else {
-1
}
}
fun main() {
println(processRequest(1))
println(processRequest(10))
println(processRequest(-1))
}
// 2
// 20
// -1