Skip to content

Commit 2cbe03b

Browse files
committed
fix after V commit 38ac4e6 (simplify << ops)
1 parent cac7101 commit 2cbe03b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

2022/13/mvlootman.v

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ fn solve_part2(pairs []Pair) !int {
4848

4949
packet_start := parse_line('[[2]]')!
5050
packet_end := parse_line('[[6]]')!
51-
items << [packet_start, packet_end]
51+
items << packet_start
52+
items << packet_end
5253

5354
// OrderingState enum values are set specific to sort all right orders on top
5455
items.sort_with_compare(fn (a &Item, b &Item) int {

0 commit comments

Comments
 (0)