-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_2074_reverse_nodes_in_even_length_groups.rb
More file actions
53 lines (49 loc) · 1.1 KB
/
test_2074_reverse_nodes_in_even_length_groups.rb
File metadata and controls
53 lines (49 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# frozen_string_literal: true
require_relative '../test_helper'
require_relative '../../lib/common/linked_list'
require_relative '../../lib/medium/2074_reverse_nodes_in_even_length_groups'
require 'minitest/autorun'
class ReverseNodesInEvenLengthGroupsTest < ::Minitest::Test
def test_default_one
assert(
::ListNode.are_equals(
::ListNode.from_array(
[5, 6, 2, 3, 9, 1, 4, 8, 3, 7]
),
reverse_even_length_groups(
::ListNode.from_array(
[5, 2, 6, 3, 9, 1, 7, 3, 8, 4]
)
)
)
)
end
def test_default_two
assert(
::ListNode.are_equals(
::ListNode.from_array(
[1, 0, 1, 6]
),
reverse_even_length_groups(
::ListNode.from_array(
[1, 1, 0, 6]
)
)
)
)
end
def test_default_three
assert(
::ListNode.are_equals(
::ListNode.from_array(
[1, 0, 1, 5, 6]
),
reverse_even_length_groups(
::ListNode.from_array(
[1, 1, 0, 6, 5]
)
)
)
)
end
end