mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-02 12:58:42 +08:00
Reformat the C# codes.
Disable creating new line before open brace.
This commit is contained in:
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user