Donnow how to make an issue. Full code here: ...
# kontributors
m
Donnow how to make an issue. Full code here: var l = listOf(1, 3, "2A", "4B") l = l.sortedBy { when (it) { is Int -> it.toInt() is String -> it[0].toString().toInt() else -> 0 } } assertEquals(listOf(1, "2A", 3, "4B"), l) Works