Skip to content

Commit eb12672

Browse files
nrhitikidoocs
authored andcommitted
style: format code and docs with prettier
1 parent ebeaba3 commit eb12672

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

solution/0100-0199/0197.Rising Temperature/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ FROM
8686
JOIN Weather AS w2
8787
ON SUBDATE(w1.recordDate, 1) = w2.recordDate AND w1.temperature > w2.temperature;
8888
```
89+
8990
### **Pandas**
9091

9192
```python

solution/0100-0199/0197.Rising Temperature/README_EN.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ FROM
7979
JOIN Weather AS w2
8080
ON SUBDATE(w1.recordDate, 1) = w2.recordDate AND w1.temperature > w2.temperature;
8181
```
82+
8283
### **Pandas**
8384

8485
```python

0 commit comments

Comments
 (0)