Skip to content

Commit 9324b58

Browse files
authoredJun 15, 2023
style: format inline code block (doocs#1038)
1 parent cf29a78 commit 9324b58

File tree

1,359 files changed

+4118
-4886
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,359 files changed

+4118
-4886
lines changed
 

‎basic/searching/BinarySearch/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
### 模板 1
88

99
```java
10-
boolean check(int x) {}
10+
boolean check(int x) {
11+
}
1112

1213
int search(int left, int right) {
1314
while (left < right) {

‎basic/searching/BinarySearch/README_EN.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
### Template 1
66

77
```java
8-
boolean check(int x) {}
8+
boolean check(int x) {
9+
}
910

1011
int search(int left, int right) {
1112
while (left < right) {

0 commit comments

Comments
 (0)
Please sign in to comment.