feat(utils, templates, docs): file-based templates + stronger README
This commit is contained in:
24
problems/0042-answer-to-everything/csharp/Program.cs
Normal file
24
problems/0042-answer-to-everything/csharp/Program.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
// LeetCode 42: Answer To Everything
|
||||
// 難度: Easy
|
||||
// 日期: 2025-09-12
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
public class Solution {
|
||||
// TODO: 根據題意調整簽名
|
||||
public int Solve(int[] nums) {
|
||||
// 實作解法
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
public class Program {
|
||||
public static void Main() {
|
||||
var s = new Solution();
|
||||
// TODO: 可加入簡單輸入/輸出測試
|
||||
Console.WriteLine("Hello LeetCode 42!");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user