Skip to content

Commit 9523135

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

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

solution/0000-0099/0008.String to Integer (atoi)/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,8 +385,10 @@ class Solution {
385385
}
386386
}
387387
```
388+
388389
#### C
389-
``` C
390+
391+
```C
390392
int myAtoi(char* s) {
391393
int i = 0;
392394
int sign = 1;

solution/0000-0099/0008.String to Integer (atoi)/README_EN.md

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

377377
#### C
378378

379-
``` C
379+
```C
380380
int myAtoi(char* s) {
381381
int i = 0;
382382
int sign = 1;

solution/0000-0099/0009.Palindrome Number/README.md

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

251251
#### C
252252

253-
``` C
253+
```C
254254
bool isPalindrome(int x) {
255255
if (x < 0)
256256
return false;

solution/0000-0099/0009.Palindrome Number/README_EN.md

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

243243
#### C
244244

245-
``` C
245+
```C
246246
bool isPalindrome(int x) {
247247
if (x < 0)
248248
return false;

0 commit comments

Comments
 (0)