Skip to content

Commit f67f38d

Browse files
committed
Upd readme
1 parent 2c30ef9 commit f67f38d

File tree

1 file changed

+1
-1
lines changed
  • src/test/kotlin/com/igorwojda/string/getduplicatedarguments

1 file changed

+1
-1
lines changed

src/test/kotlin/com/igorwojda/string/getduplicatedarguments/Solution.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ private object Solution1 {
1111
}
1212

1313
// Time complexity: O(n)
14-
// Optimal solution using double pointer.
14+
// Using double pointer.
1515
private object Solution2 {
1616
fun getDuplicatedArguments(vararg strings: String): List<String>? {
1717
var pointer1 = 0

0 commit comments

Comments
 (0)