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

View File

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