Skip to content

Commit 266868e

Browse files
nikhilchikateidoocs
authored andcommitted
style: format code and docs with prettier
1 parent 9004882 commit 266868e

File tree

1 file changed

+2
-1
lines changed
  • solution/2500-2599/2501.Longest Square Streak in an Array

1 file changed

+2
-1
lines changed

solution/2500-2599/2501.Longest Square Streak in an Array/README_EN.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ class Solution {
151151
```
152152

153153
#### Java3
154+
154155
```java3
155156
class Solution {
156157
private Map<Integer, Integer> memo = new HashMap<>(); // Memoization map
@@ -203,6 +204,7 @@ class Solution {
203204
```
204205

205206
#### Java4
207+
206208
```java4
207209
public class Solution {
208210
public int longestSquareStreak(int[] nums) {
@@ -242,7 +244,6 @@ public class Solution {
242244
}
243245
```
244246

245-
246247
#### C++
247248

248249
```cpp

0 commit comments

Comments
 (0)