Skip to content

Commit 2362766

Browse files
authoredOct 29, 2024··
Merge pull request #360 from paulsasi/feature/exponentiation-iterative
Exponentitaion (iterative): Scala implementation
2 parents e34ebfa + 035bf03 commit 2362766

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -402,8 +402,8 @@ In order to achieve greater coverage and encourage more people to contribute to
402402
</a>
403403
</td>
404404
<td> <!-- Scala -->
405-
<a href="./CONTRIBUTING.md">
406-
<img align="center" height="25" src="./logos/github.svg" />
405+
<a href="./src/scala/Exponentiation.scala">
406+
<img align="center" height="25" src="./logos/scala.svg" />
407407
</a>
408408
</td>
409409
<td> <!-- Kotlin -->

‎src/scala/Exponentiation.scala

+9
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)
Please sign in to comment.