-
mac版的LeetCode是否可用?- LeetCode-solutions: LeetCode 解决方案
资源介绍
leetcode有mac版吗.NET
Core
中的
LeetCode
解决方案
与
XUnit
测试一起解决问题的方法。
设置
在
Windows/Mac/Linux
上安装
.Net
Core
()
安装
在本地克隆这个
repo
运行测试
个别问题的解决方案在
/src/LeetcodeSolutions
文件夹中
运行所有测试:
导航到
/test/LeetcodeSolutions.tests
运行“dotnet
测试”
要对特定解决方案运行测试:
导航到
/test/LeetcodeSolutions.tests
运行以下命令(其中“SolXXXProblemNameTest”是您要测试的问题的测试类)
dotnet
test
-class
"SumitGouthaman.LeetcodeSolutions.UnitTests.SolXXXProblemNameTest"
笔记
此处的解决方案使用
C#
功能来保持解决方案的简单性和简洁性。
由于
LeetCode
尚不支持较新的单声道版本,因此必须将
C#
6
构造转换为适当的
pre-C#6
构造。
//
Assume