mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-09 11:34:46 +08:00
解决0392判断子序列 Java版本代码无样式问题
This commit is contained in:
@ -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();
|
||||||
|
Reference in New Issue
Block a user