mirror of
https://github.com/krahets/hello-algo.git
synced 2026-03-24 05:41:37 +08: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:
@@ -53,7 +53,7 @@ $$
|
||||
=== "C#"
|
||||
|
||||
```csharp title="unbounded_knapsack.cs"
|
||||
[class]{unbounded_knapsack}-[func]{unboundedKnapsackDP}
|
||||
[class]{unbounded_knapsack}-[func]{UnboundedKnapsackDP}
|
||||
```
|
||||
|
||||
=== "Go"
|
||||
@@ -151,7 +151,7 @@ $$
|
||||
=== "C#"
|
||||
|
||||
```csharp title="unbounded_knapsack.cs"
|
||||
[class]{unbounded_knapsack}-[func]{unboundedKnapsackDPComp}
|
||||
[class]{unbounded_knapsack}-[func]{UnboundedKnapsackDPComp}
|
||||
```
|
||||
|
||||
=== "Go"
|
||||
@@ -272,7 +272,7 @@ $$
|
||||
=== "C#"
|
||||
|
||||
```csharp title="coin_change.cs"
|
||||
[class]{coin_change}-[func]{coinChangeDP}
|
||||
[class]{coin_change}-[func]{CoinChangeDP}
|
||||
```
|
||||
|
||||
=== "Go"
|
||||
@@ -395,7 +395,7 @@ $$
|
||||
=== "C#"
|
||||
|
||||
```csharp title="coin_change.cs"
|
||||
[class]{coin_change}-[func]{coinChangeDPComp}
|
||||
[class]{coin_change}-[func]{CoinChangeDPComp}
|
||||
```
|
||||
|
||||
=== "Go"
|
||||
@@ -489,7 +489,7 @@ $$
|
||||
=== "C#"
|
||||
|
||||
```csharp title="coin_change_ii.cs"
|
||||
[class]{coin_change_ii}-[func]{coinChangeIIDP}
|
||||
[class]{coin_change_ii}-[func]{CoinChangeIIDP}
|
||||
```
|
||||
|
||||
=== "Go"
|
||||
@@ -565,7 +565,7 @@ $$
|
||||
=== "C#"
|
||||
|
||||
```csharp title="coin_change_ii.cs"
|
||||
[class]{coin_change_ii}-[func]{coinChangeIIDPComp}
|
||||
[class]{coin_change_ii}-[func]{CoinChangeIIDPComp}
|
||||
```
|
||||
|
||||
=== "Go"
|
||||
|
||||
Reference in New Issue
Block a user