Skip to content

Commit beb0b27

Browse files
authored
gofmt the binary tree diagram (#177)
1 parent 0af64fa commit beb0b27

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

queue/symmetrical_binary_tree_test.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ TestIsTreeSymmetrical tests solution(s) with the following signature and problem
1414
Given a binary tree return true of it is symmetric and false otherwise. A tree is symmetric if you
1515
can draw a vertical line through the root and then the left subtree is the mirror image of the right subtree.
1616
17-
Symmetric Not Symmetric
18-
2 2
19-
/ \ / \
20-
/ \ / \
21-
4 4 3 4
22-
/ \ / \ / \ / \
23-
5 6 6 5 5 6 6 5
17+
Symmetric Not Symmetric
18+
2 2
19+
/ \ / \
20+
/ \ / \
21+
4 4 3 4
22+
/ \ / \ / \ / \
23+
5 6 6 5 5 6 6 5
2424
2525
For example given "2,4,4,5,6,6,5", shown in the symmetric tree above return true.
2626
Given "2,3,4,5,6,6,5", shown in the not symmetric tree above return false.

0 commit comments

Comments
 (0)