refactor: use global using to reduce usings in each file (#486)

This commit is contained in:
hpstory
2023-05-06 22:48:02 +08:00
committed by GitHub
parent db6caf0d43
commit 40319e7f30
48 changed files with 311 additions and 428 deletions

View File

@@ -2,8 +2,6 @@
// Created Time: 2022-12-14
// Author: mingXta (1195669834@qq.com)
using NUnit.Framework;
namespace hello_algo.chapter_array_and_linkedlist;
public class array {

View File

@@ -2,9 +2,6 @@
// Created Time: 2022-12-16
// Author: mingXta (1195669834@qq.com)
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_array_and_linkedlist;
public class linked_list {

View File

@@ -4,8 +4,6 @@
* Author: haptear (haptear@hotmail.com)
*/
using NUnit.Framework;
namespace hello_algo.chapter_array_and_linkedlist;
public class list {

View File

@@ -4,8 +4,6 @@
* Author: haptear (haptear@hotmail.com)
*/
using NUnit.Framework;
namespace hello_algo.chapter_array_and_linkedlist;
/* 列表类简易实现 */