We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e34ebfa + 035bf03 commit 2362766Copy full SHA for 2362766
README.md
@@ -402,8 +402,8 @@ In order to achieve greater coverage and encourage more people to contribute to
402
</a>
403
</td>
404
<td> <!-- Scala -->
405
- <a href="./CONTRIBUTING.md">
406
- <img align="center" height="25" src="./logos/github.svg" />
+ <a href="./src/scala/Exponentiation.scala">
+ <img align="center" height="25" src="./logos/scala.svg" />
407
408
409
<td> <!-- Kotlin -->
src/scala/Exponentiation.scala
@@ -0,0 +1,9 @@
1
+def exponentiation(base: Int, exponent: Int): Int = {
2
+ (1 to exponent)
3
+ .map(_ => base)
4
+ .reduce(_ * _)
5
+}
6
+
7
+object Main extends App {
8
+ println("5 ^ 3 = " + exponentiation(5, 3))
9
0 commit comments