Skip to content

Commit 1ffc97c

Browse files
committed
Merge branch 'develop'
2 parents 2cd6aaa + 442d19e commit 1ffc97c

File tree

17 files changed

+2148
-161
lines changed

17 files changed

+2148
-161
lines changed

.github/workflows/cmake.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name: C++ CMake Test
33

44
on:
5-
# at 08:00 on day-of-month 1
5+
# every day-of-month 1st at 00:00 UTC
66
schedule:
77
# prettier-ignore
8-
- cron: '0 8 1 * *'
8+
- cron: '0 0 1 * *'
99
workflow_dispatch:
1010

1111
env:

.github/workflows/go.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name: Go Test
33

44
on:
5-
# at 08:00 on day-of-month 1
5+
# every day-of-month 1st at 00:00 UTC
66
schedule:
77
# prettier-ignore
8-
- cron: '0 8 1 * *'
8+
- cron: '0 0 1 * *'
99
workflow_dispatch:
1010

1111
jobs:

.github/workflows/gradle.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name: Java Gradle Test
33

44
on:
5-
# at 08:00 on day-of-month 1
5+
# every day-of-month 1st at 00:00 UTC
66
schedule:
77
# prettier-ignore
8-
- cron: '0 8 1 * *'
8+
- cron: '0 0 1 * *'
99
workflow_dispatch:
1010

1111
jobs:

.github/workflows/link-check.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: Markdown Link Check
22

33
on:
4-
# every monday at 08:00
4+
# every sunday at 23:00 UTC
55
schedule:
66
# prettier-ignore
7-
- cron: '0 8 * * 1'
7+
- cron: '0 23 * * 0'
88
workflow_call:
99
workflow_dispatch:
1010

.github/workflows/poetry.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name: Python Poetry Test
33

44
on:
5-
# at 08:00 on day-of-month 1
5+
# every day-of-month 1st at 00:00 UTC
66
schedule:
77
# prettier-ignore
8-
- cron: '0 8 1 * *'
8+
- cron: '0 0 1 * *'
99
workflow_dispatch:
1010

1111
jobs:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1091,7 +1091,7 @@ Collections.binarySearch(arrayList, 3); // for list
10911091
- DNA search (Search a codon(combinations of three nucleotides) in a gene), CCSP#2.1: [python](/python-algorithm/algorithm/search/dna_search.py)(`linear_contains`, `binary_contains`) | Search a codon(combinations of three nucleotides) in a gene using linear search and binary search.
10921092
- Find k-th smallest/largest element in an array, EPI#11.8: [c++](/cpp-algorithm/src/search/quick_select.h)(`FindKthSmallestElement`, `FindKthLargestElement`) | Find the k-th smallest/largest element in an array using the quickselect algorithm (`QuickSelectAlgorithm`).
10931093
- Find the minimum and maximum elements in an array, EPI#11.7: [c++](/cpp-algorithm/src/search/find_min_max.h)(`FindMinMax`)
1094-
- Search an element in generic list, CCSP#2.1: [python](/python-algorithm/algorithm/search/generic_search.py)(`generic_linear_contains`, `generic_linear_contains`) | Search an element in generic list using linear search and binary search.
1094+
- Search an element in generic list, CCSP#2.1: [python](/python-algorithm/algorithm/search/generic_search.py)(`generic_linear_contains`, `generic_binary_contains`) | Search an element in generic list using linear search or binary search.
10951095
- Search a sorted array
10961096
- entry equal to its index, EPI#11.2: [c++](/cpp-algorithm/src/search/search_sorted_array.h)(`SearchEntryEqualToItsIndex`)
10971097
- the first greater than a key: [c++](/cpp-algorithm/src/search/search_sorted_array.h)(`SearchFirstGreaterThanKey`)

0 commit comments

Comments
 (0)