forked from igorwojda/kotlin-coding-challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenge.kt
35 lines (28 loc) · 921 Bytes
/
challenge.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.igorwojda.integer.digitfrequency
import org.amshove.kluent.shouldBeEqualTo
import org.junit.jupiter.api.Test
private fun equalDigitFrequency(i1: Int, i2: Int): Boolean {
TODO("not implemented")
}
private class Test {
@Test
fun `'789' and '897' have the same digit frequency`() {
equalDigitFrequency(789, 897) shouldBeEqualTo true
}
@Test
fun `'123445' and '451243' have the same digit frequency`() {
equalDigitFrequency(123445, 451243) shouldBeEqualTo true
}
@Test
fun `'447' and '477' have different digit frequency`() {
equalDigitFrequency(447, 477) shouldBeEqualTo false
}
@Test
fun `'578' and '0' have different digit frequency`() {
equalDigitFrequency(578, 0) shouldBeEqualTo false
}
@Test
fun `'0' and '0' have the same digit frequency`() {
equalDigitFrequency(0, 0) shouldBeEqualTo true
}
}