We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27afabf commit 328e8a4Copy full SHA for 328e8a4
contents/euclidean_algorithm/code/kotlin/Euclidean.kt
@@ -26,6 +26,8 @@ fun euclidMod(a: Int, b: Int): Int {
26
}
27
28
fun main(args: Array<String>) {
29
+ println("[#]\nModulus-based euclidean algorithm result:")
30
println(euclidSub(128 * 12, 128 * 77))
31
+ println("[#]\nSubtraction-based euclidean algorithm result:")
32
println(euclidMod(64 * 67, 64 * 81))
33
0 commit comments