Minor fix: expected result different from exercise text
This commit is contained in:
parent
388d2d60b0
commit
7114df6b31
|
@ -6,6 +6,6 @@ fun findMax(first: Int, second: Int): Int =
|
|||
fun main() {
|
||||
val first = 17
|
||||
val second = 31
|
||||
println("The maximum between $first and $second is " +
|
||||
println("The maximum of $first and $second is " +
|
||||
"${findMax(first, second)}.")
|
||||
}
|
|
@ -4,7 +4,7 @@ files:
|
|||
visible: true
|
||||
placeholders:
|
||||
- offset: 169
|
||||
length: 88
|
||||
length: 83
|
||||
placeholder_text: TODO()
|
||||
- name: test/output.txt
|
||||
visible: false
|
||||
|
|
|
@ -1 +1 @@
|
|||
The maximum between 17 and 31 is 31.
|
||||
The maximum of 17 and 31 is 31.
|
||||
|
|
Loading…
Reference in New Issue