mirror of
https://github.com/krahets/hello-algo.git
synced 2026-07-12 07:26:07 +00:00
fix(csharp): Modify method name to PascalCase, simplify new expression (#840)
* Modify method name to PascalCase(array and linked list) * Modify method name to PascalCase(backtracking) * Modify method name to PascalCase(computational complexity) * Modify method name to PascalCase(divide and conquer) * Modify method name to PascalCase(dynamic programming) * Modify method name to PascalCase(graph) * Modify method name to PascalCase(greedy) * Modify method name to PascalCase(hashing) * Modify method name to PascalCase(heap) * Modify method name to PascalCase(searching) * Modify method name to PascalCase(sorting) * Modify method name to PascalCase(stack and queue) * Modify method name to PascalCase(tree) * local check
This commit is contained in:
@@ -33,7 +33,7 @@
|
||||
=== "C#"
|
||||
|
||||
```csharp title="iteration.cs"
|
||||
[class]{iteration}-[func]{forLoop}
|
||||
[class]{iteration}-[func]{ForLoop}
|
||||
```
|
||||
|
||||
=== "Go"
|
||||
@@ -117,7 +117,7 @@
|
||||
=== "C#"
|
||||
|
||||
```csharp title="iteration.cs"
|
||||
[class]{iteration}-[func]{whileLoop}
|
||||
[class]{iteration}-[func]{WhileLoop}
|
||||
```
|
||||
|
||||
=== "Go"
|
||||
@@ -193,7 +193,7 @@
|
||||
=== "C#"
|
||||
|
||||
```csharp title="iteration.cs"
|
||||
[class]{iteration}-[func]{whileLoopII}
|
||||
[class]{iteration}-[func]{WhileLoopII}
|
||||
```
|
||||
|
||||
=== "Go"
|
||||
@@ -271,7 +271,7 @@
|
||||
=== "C#"
|
||||
|
||||
```csharp title="iteration.cs"
|
||||
[class]{iteration}-[func]{nestedForLoop}
|
||||
[class]{iteration}-[func]{NestedForLoop}
|
||||
```
|
||||
|
||||
=== "Go"
|
||||
@@ -366,7 +366,7 @@
|
||||
=== "C#"
|
||||
|
||||
```csharp title="recursion.cs"
|
||||
[class]{recursion}-[func]{recur}
|
||||
[class]{recursion}-[func]{Recur}
|
||||
```
|
||||
|
||||
=== "Go"
|
||||
@@ -474,7 +474,7 @@
|
||||
=== "C#"
|
||||
|
||||
```csharp title="recursion.cs"
|
||||
[class]{recursion}-[func]{tailRecur}
|
||||
[class]{recursion}-[func]{TailRecur}
|
||||
```
|
||||
|
||||
=== "Go"
|
||||
@@ -572,7 +572,7 @@
|
||||
=== "C#"
|
||||
|
||||
```csharp title="recursion.cs"
|
||||
[class]{recursion}-[func]{fib}
|
||||
[class]{recursion}-[func]{Fib}
|
||||
```
|
||||
|
||||
=== "Go"
|
||||
@@ -679,7 +679,7 @@
|
||||
=== "C#"
|
||||
|
||||
```csharp title="recursion.cs"
|
||||
[class]{recursion}-[func]{forLoopRecur}
|
||||
[class]{recursion}-[func]{ForLoopRecur}
|
||||
```
|
||||
|
||||
=== "Go"
|
||||
|
||||
Reference in New Issue
Block a user