Reformat the C# codes.

Disable creating new line before open brace.
This commit is contained in:
krahets
2023-04-23 03:03:12 +08:00
parent ac6eece4f3
commit 73dcb4cea9
49 changed files with 561 additions and 1135 deletions

View File

@ -9,11 +9,9 @@ using NUnit.Framework;
namespace hello_algo.chapter_tree;
public class binary_tree
{
public class binary_tree {
[Test]
public void Test()
{
public void Test() {
/* 初始化二叉树 */
// 初始化节点
TreeNode n1 = new TreeNode(1);