Skip to content

Commit fc1a90f

Browse files
pranjal030404idoocs
authored andcommitted
style: format code and docs with prettier
1 parent 4f148b3 commit fc1a90f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

solution/0000-0099/0016.3Sum Closest/README.md

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

318318
#### C
319319

320-
``` C
320+
```C
321321
int cmp(const void *a, const void *b) { return *(int *)a - *(int *)b; }
322322

323323
int threeSumClosest(int *nums, int numsSize, int target) {

solution/0000-0099/0016.3Sum Closest/README_EN.md

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

317317
#### C
318318

319-
``` C
319+
```C
320320
int cmp(const void *a, const void *b) { return *(int *)a - *(int *)b; }
321321

322322
int threeSumClosest(int *nums, int numsSize, int target) {

solution/0000-0099/0017.Letter Combinations of a Phone Number/README.md

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

558558
#### C
559559

560-
``` C
560+
```C
561561
char *map[] = {"", "", "abc", "def", "ghi",
562562
"jkl", "mno", "pqrs", "tuv", "wxyz"};
563563

solution/0000-0099/0017.Letter Combinations of a Phone Number/README_EN.md

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

554554
#### C
555555

556-
``` C
556+
```C
557557
char *map[] = {"", "", "abc", "def", "ghi",
558558
"jkl", "mno", "pqrs", "tuv", "wxyz"};
559559

0 commit comments

Comments
 (0)