Skip to content

Commit 989868c

Browse files
authored
Update Solution.scala
1 parent f2922e1 commit 989868c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/scala/g0001_0100/s0006_zigzag_conversion/Solution.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package g0001_0100.s0006_zigzag_conversion
22

3-
import scala.collection.mutable
4-
53
// #Medium #String #2023_11_09_Time_542_ms_(85.71%)_Space_55.7_MB_(90.48%)
64

5+
import scala.collection.mutable
6+
77
object Solution {
88
def convert(s: String, numRows: Int): String = {
99
if (numRows == 1) return s

0 commit comments

Comments
 (0)