forked from PiotrPrus/kotlin-coding-challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolution.kt
39 lines (30 loc) · 917 Bytes
/
solution.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
36
37
38
39
package com.igorwojda.string.surroundedletter
// Regex solution
private object Solution1 {
private fun surroundedLetter(str: String): Boolean {
val pattern = Regex("(?=(\\+[a-z]\\+))")
.findAll(str)
.count()
val letters = str.count { it.isLetter() }
return pattern == letters
}
}
// Iterative solution
private object Solution2 {
private fun surroundedLetter(str: String): Boolean {
if (str.length < 3) {
return false
}
if (str.first().isLetter() || str.last().isLetter()) {
return false
}
var previousCharacter = str.first()
str.drop(1).forEach { currentCharacter ->
if (currentCharacter.isLetter() && previousCharacter.isLetter()) {
return false
}
previousCharacter = currentCharacter
}
return true
}
}