wwm.LeetCodeHelper 倉庫地址:https://gitee.com/wwmin/www.leetcode.helper 1. 說明 wwm.LeetCodeHelper是一款幫助在本地用C#做LeetCode題的一個庫,具有自動拉取題生成csharp文件,自動生成測試用例,自動完成測 ...
wwm.LeetCodeHelper
倉庫地址:https://gitee.com/wwmin/www.leetcode.helper
1. 說明
wwm.LeetCodeHelper是一款幫助在本地用C#做LeetCode題的一個庫,具有自動拉取題生成csharp文件,自動生成測試用例,自動完成測試對比等等的功能。
- 適用語言範圍:C#
- 使用LeetCode版本:國內版
2. 安裝
dotnet add package wwm.LeetCodeHelper --version 0.8.6
Install-Package wwm.LeetCodeHelper -Version 0.8.6
3. 使用方式:
創建控制台應用程式
只需要創建一次此控制台應用程式,後面的題庫內容都是一個一個類文件
在program.cs文件中添加如下內容
//方式一: 方便自定義刷題
using Microsoft.Extensions.Configuration;
#region 初始化
//添加secrets.json 然後從中讀取登錄信息
//方法一:
//步驟1: 添加依賴 Microsoft.Extensions.Configuration
//步驟2: 右鍵項目然後選擇管理用戶機密,然後在打開的secrets.json中添加
/*
{
"user_password_login": {
"email": "your email",
"password": "your password"
},
"cookie_login": {
"LEETCODE_SESSION": "your leetcode_session cookie",
}
}
*/
// 註意如果項用cookie登錄則填充"cookie_login",如果使用用戶名密碼登錄則填充"user_password_login",建議使用cookie,用戶名密碼模式需要用到模擬登錄,且需要下載無頭瀏覽器,配置起來稍微麻煩一些。
//方法二:
//步驟1: 添加依賴 Microsoft.Extensions.Configuration
//步驟2: 啟用機密,使用.net cli命令 `dotnet user-secrets init`
//步驟3: 設置機密, `dotnet user-secrets set "cookie_login:LEETCODE_SESSION" "your cookie"`
// 或者設置用戶名密碼 `dotnet user-secrets set "user_password_login:email" "your email"` `dotnet user-secrets set "user_password_login:password" "your password"`
//步驟4: 查看 `dotnet user-secrets list`
// 更多dotnet cli 可參考:https://docs.microsoft.com/zh-cn/aspnet/core/security/app-secrets?view=aspnetcore-6.0&tabs=windows
var config = new ConfigurationBuilder()
.SetBasePath(AppDomain.CurrentDomain.BaseDirectory)
.AddUserSecrets<Program>().Build();
var config_cookie = config.GetRequiredSection("cookie_login:LEETCODE_SESSION").Value;
if (config_cookie != null)
{
await LeetCodeHelper.InitAsync(config_cookie);
}
else
{
var config_email = config.GetRequiredSection("user_password_login:email")?.Value;
var config_password = config.GetRequiredSection("user_password_login:password")?.Value;
if (string.IsNullOrEmpty(config_email) || string.IsNullOrEmpty(config_password))
{
throw new Exception("cookie或者email/password 其中之一是必須的,建議使用cookie");
}
await LeetCodeHelper.InitAsync(config_email, config_password);
}
#endregion
#if !Release //切換此處的開關可在自定義刷題和每日一題之間切換
string url = "";
if (string.IsNullOrEmpty(url))
{
TestResultHelper.InvokeAllTest();
}
else
{
await LeetCodeHelper.GetQuestionAsync(url);
}
#else
//方式二: 方便刷每日一題
await LeetCodeHelper.GetTodayQuestionOrInvokeTestAsync();
#endif
Console.Write("按任意鍵退出...");
Console.ReadKey();
4. 初始化用戶信息
為了安全起見,建議用戶將自己的cookie
LEETCODE_SESSION
值存儲到secrets.json
文件中,這樣將自己的代碼庫上傳到git遠程倉庫就不會擔心自己的leet-code信息被盜取了
具體說明:參考上段代碼中的註釋部分
如何獲取LEETCODE_SESSION?
獲取leetcode網站cookie方法:
登錄leetcode網站後,打開控制台,找到控制台的Application面板在左側的Storage項中找到Cookies然後選中https://leetcode.cn
右側有出現該網站的cookie目錄,尋找到LEETCODE_SESSION
選中後,複製後面的Value值即可。
5. 刷題方式:1.自定義url 2.每日一題
5.1 自定義url
只需要將 #if !Release
中Release前加個!即可,這樣在Debug模式下系統就執行此處的代碼
5.2 每日一題模式
與方式1相反,去掉Release前的!,在Debug模式下系統就執行此處的代碼
當然這裡的方式1和2的組織模式可以自由發揮。
6. 獲取題目
在選擇自定義url模式刷題時,獲取題目需要添加url內容
string url = "https://leetcode.cn/problems/two-sum/"
然後F5運行,
控制臺中內容如下:
已從介面獲取數據
將數據寫入文件:two-sum.txt
文件已寫入:D:\work\learn\dotnet\wwm.LeetCodeHelper\wwm.LeetCodeHelper.Test\Content\two-sum.txt
文件名已拷貝到剪貼板: two-sum.txt
文件已寫入:D:\work\learn\dotnet\wwm.LeetCodeHelper\wwm.LeetCodeHelper.Test\Solutions\two-sum.cs
文件名已拷貝到剪貼板: two-sum.cs
按任意鍵退出...
文件名已經複製到了剪貼板中,在Visual Studio中按Ctrl+Shift+T
快捷鍵彈出框中,粘貼文件名後查找到回車即可,此處為了節省文件變多後查找剛下載的文件的時間
內容如下:
namespace Solutions;
/// <summary>
/// 1556. 通過翻轉子數組使兩個數組相等
/// </summary>
public class CanBeEqualSolution : ITest
{
private class Data : DataAttribute
{
public override IEnumerable<object[]> GetData()
{
yield return new object[] { StringTo<int[]>("[1,2,3,4]").ToArray(), StringTo<int[]>("[2,4,1,3]").ToArray(), true };
yield return new object[] { StringTo<int[]>("[7]").ToArray(), StringTo<int[]>("[7]").ToArray(), true };
yield return new object[] { StringTo<int[]>("[3,7,9]").ToArray(), StringTo<int[]>("[3,7,11]").ToArray(), false };
}
}
[Data]
public bool CanBeEqual(int[] target, int[] arr)
{
return default;
}
}
會在題內容上面加上測試用例,
如果是自定義刷題模式時,將url置空後就會進入執行實現ITest介面的類,
如果是每日刷題,會自動判斷題目是否已經下載,如果已下載則進入執行實現ITest的介面類。
7. 運行測試
編寫你的演算法代碼
using wwm.LeetCodeHelper.Servers;
namespace Solutions;
/// <summary>
/// 1. 兩數之和
/// https://leetcode.cn/problems/two-sum/
/// </summary>
public class TwoSumSolution : ITest
{
private class Data : DataAttribute
{
public Data()
{
IgnoreOrder = true;
}
public override IEnumerable<object[]> GetData()
{
yield return new object[] { StringTo<int[]>("[2,7,11,15]").ToArray(), 9, StringTo<int[]>("[0,1]").ToArray() };
yield return new object[] { StringTo<int[]>("[3,2,4]").ToArray(), 6, StringTo<int[]>("[1,2]").ToArray() };
yield return new object[] { StringTo<int[]>("[3,3]").ToArray(), 6, StringTo<int[]>("[0,1]").ToArray() };
}
}
[Data]
public int[] TwoSum(int[] nums, int target)
{
int[] o = new int[2];
int i, j, k = 0;
for (i = 0; i < nums.Length; i++)
{
for (j = i + 1; j < nums.Length; j++)
{
if ((nums[i] + nums[j]) == target)
{
o[0] = i;
o[1] = j;
k = 1;
}
}
if (k == 1) break;
}
return o;
}
}
F5執行,結果如下:
------->TwoSumSolution
TwoSum: 執行結果正確: [0,1]
TwoSum: 執行結果正確: [1,2]
TwoSum: 執行結果正確: [0,1]
_______測試結果: 3/3 ,耗時:97ms________
按任意鍵退出...
如果執行中有錯誤答案,會給出預期值和運行結果值,如下
------->TwoSumSolution
TwoSum: 執行結果正確: [0,1]
TwoSum: 執行結果錯誤.
預期值:[1,2]
結果值:[0,0]
TwoSum: 執行結果正確: [0,1]
_______測試結果: 2/3 ,耗時:82ms________
按任意鍵退出...
控制臺中也會有顏色提示,正確的為綠色,錯誤的為紅色
當測試完成後,需要將類的結成ITest去掉,這樣下次就不會測試該類了
該庫暫時仍在完善中,如遇到問題可提issue
許可證 / License
wwm.LeetCodeHelper 採用 Apache License 2.0 開源許可證。
wwm.LeetCodeHelper uses the Apache License 2.0 open source license.
作者:wwmin
出處:https://www.cnblogs.com/cnwwm
聯繫:[email protected] 微信:w_wmin
本文版權歸作者和博客園共有,歡迎轉載,但未經作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文鏈接,否則保留追究法律責任的權利。如有問題或建議,請多多賜教,非常感謝。