Skip to content

Commit b496d54

Browse files
pranjal030404idoocs
authored andcommitted
style: format code and docs with prettier
1 parent 3811cc1 commit b496d54

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

solution/0000-0099/0010.Regular Expression Matching/README_EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ bool isMatch(char* s, char* p) {
367367
return dfs(0, 0);
368368
}
369369
```
370+
370371
#### PHP
371372
372373
```php
@@ -408,7 +409,6 @@ class Solution {
408409
}
409410
```
410411

411-
412412
<!-- tabs:end -->
413413

414414
<!-- solution:end -->

solution/0000-0099/0012.Integer to Roman/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ class Solution {
302302

303303
#### C
304304

305-
``` C
305+
```C
306306

307307
char *intToRoman(int num) {
308308
static char res[20];

solution/0000-0099/0012.Integer to Roman/README_EN.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ class Solution {
300300

301301
#### C
302302

303-
``` C
303+
```C
304304

305305
char* intToRoman(int num) {
306306
static char res[20];
@@ -321,6 +321,7 @@ char* intToRoman(int num) {
321321

322322

323323
```
324+
324325
<!-- tabs:end -->
325326
326327
<!-- solution:end -->

solution/0000-0099/0013.Roman to Integer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ end
343343

344344
#### C
345345

346-
``` C
346+
```C
347347

348348
int romanToInt(char *s) {
349349
int map[26] = {0};

solution/0000-0099/0013.Roman to Integer/README_EN.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,9 +326,10 @@ def roman_to_int(s)
326326
ans
327327
end
328328
```
329+
329330
#### C
330331

331-
``` C
332+
```C
332333

333334
int romanToInt(char *s) {
334335
int map[26] = {0};

0 commit comments

Comments
 (0)