解决0392判断子序列 Java版本代码无样式问题

This commit is contained in:
Luo
2021-10-06 09:58:52 +08:00
committed by GitHub
parent 57001198bc
commit c97ef2dad0

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();