Merge pull request #824 from Jerry-306/patch-34

解决0392判断子序列 Java版本代码无样式问题
This commit is contained in:
程序员Carl 2021-10-08 09:36:56 +08:00 committed by GitHub
commit 145b5b0c28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ public:
Java: Java:
``` ```java
class Solution { class Solution {
public boolean isSubsequence(String s, String t) { public boolean isSubsequence(String s, String t) {
int length1 = s.length(); int length2 = t.length(); int length1 = s.length(); int length2 = t.length();