Skip to content

Commit ce720bc

Browse files
pranjal030404idoocs
authored andcommitted
style: format code and docs with prettier
1 parent e95a221 commit ce720bc

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

solution/0000-0099/0014.Longest Common Prefix/README.md

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

254254
#### C
255255

256-
``` C
256+
```C
257257

258258
char *longestCommonPrefix(char **strs, int strsSize) {
259259
if (strsSize == 0)

solution/0000-0099/0014.Longest Common Prefix/README_EN.md

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

253253
#### C
254254

255-
``` C
255+
```C
256256

257257
char *longestCommonPrefix(char **strs, int strsSize) {
258258
if (strsSize == 0)

solution/0000-0099/0015.3Sum/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,9 +453,9 @@ class Solution {
453453
}
454454
```
455455

456-
#### C
456+
#### C
457457

458-
``` C
458+
```C
459459

460460
int cmp(const void *a, const void *b) { return *(int *)a - *(int *)b; }
461461

solution/0000-0099/0015.3Sum/README_EN.md

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

452452
#### C
453453

454-
``` C
454+
```C
455455

456456
int cmp(const void *a, const void *b) { return *(int *)a - *(int *)b; }
457457

0 commit comments

Comments
 (0)