LJ

Results 15 issues of LJ

方法重载注解补充

继承接口方法重载注解补充

Update _index.cn.md :Chinese document link redirection error modified,corresponding to the Chinese part of issue #31126 error. Fixes #31126. Changes proposed in this pull request: - Fix link jump 404 error...

## Bug Report Document link redirection error. When you read the document and click on the hyperlink, you will find a 404 error in the document link redirection. The error...

Changes proposed in this pull request: - Improve unreasonable formatting in documents: Modify the style of the corresponding Markdown text display in the document to make it normally bold. ---...

```GO package main import ( "fmt" ) func main(){ var n,m int fmt.Scanf("%d %d",&n,&m) var dp = make([]int,n + 1) dp[0] = 1 for i := 1;i

```C++ #include #include #include using namespace std; int c,n; // 容量 和 种类数量 void chose(){ vectorweight(n); vectorvalue(n); vectornums(n); for(int i = 0;i < n;i++){ cin >> weight[i]; } for(int i...

```C++ #include #include #include using namespace std; int main() { int n, m; while (cin >> n >> m) { vector dp(n + 1, 0); dp[0] = 1; for (int...

```C++ #include #include #include using namespace std; int main() { string s; while (cin >> s) { int count = 0; // 统计数字的个数 int sOldSize = s.size(); for (int i...

```C++ #include #include #include using namespace std; int main() { string s; while (cin >> s) { int count = 0; // 统计数字的个数 int sOldSize = s.size(); for (int i...