Skip to content

Commit e2b9039

Browse files
committed
101
1 parent bb0c9d7 commit e2b9039

3 files changed

Lines changed: 4 additions & 0 deletions

File tree

Algorithms/SymmetricTree.cs

1.02 KB
Binary file not shown.

Algorithms/Utils/Helper.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ public static ListNode<int> ToListNode(this List<int> lst)
2020
}
2121
throw new Exception("input is not a valid List");
2222
}
23+
public static TreeNode ToTreeNode(this int?[] arr)
24+
{
25+
throw new NotImplementedException("TODO");
26+
}
2327
public static List<int> ToList(this ListNode<int> node)
2428
{
2529
var lst = new List<int>();
1.35 KB
Binary file not shown.

0 commit comments

Comments
 (0)