Skip to content

Commit b706d6e

Browse files
committed
Changes - Day 6
1 parent a61c1b0 commit b706d6e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/scala/com/kishan/scala/leetcode/juneChallenges/QueueReconstructionByHeight.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,8 @@ object QueueReconstructionByHeight {
6060
emptyLinkedList.asScala.toArray
6161
}
6262

63-
64-
6563
def main(args: Array[String]): Unit = {
6664
val input: Array[Array[Int]] = Array(Array(7, 0), Array(4, 4), Array(7, 1), Array(5, 0), Array(6, 1), Array(5, 2))
67-
65+
println(reconstructQueue(input).map(_.toList).toList)
6866
}
6967
}

0 commit comments

Comments
 (0)