mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-02 12:58:42 +08:00
feat(csharp): add csharp code for charper dynamic programming (#574)
* feat(csharp): add csharp code for charper dynamic programming * add climbing_stairs_constraint_dp
This commit is contained in:
@ -18,7 +18,7 @@ public class Trunk {
|
||||
|
||||
public class PrintUtil {
|
||||
/* Print a list */
|
||||
public static void PrintList<T>(List<T> list) {
|
||||
public static void PrintList<T>(IList<T> list) {
|
||||
Console.WriteLine("[" + string.Join(", ", list) + "]");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user