8000 Auto-generated commit · stdlib-js/ndarray-base-every@ee80183 · GitHub
[go: up one dir, main page]

Skip to content

Commit ee80183

Browse files
committed
Auto-generated commit
1 parent d1af545 commit ee80183

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-04-25)
7+
## Unreleased (2025-05-07)
88

99
<section class="features">
1010

@@ -66,6 +66,7 @@
6666

6767
<details>
6868

69+
- [`3dd8cb3`](https://github.com/stdlib-js/stdlib/commit/3dd8cb379ea22c4a92d610d146cdd662d3187e27) - **chore:** minor clean-up _(by Philipp Burckhardt)_
6970
- [`998cea3`](https://github.com/stdlib-js/stdlib/commit/998cea3de3266730ae7e35905faf5570df1a4b29) - **docs:** fix equality check _(by Athan Reines)_
7071
- [`5426105`](https://github.com/stdlib-js/stdlib/commit/5426105c564949702197dd622aab2e81cae79283) - **docs:** use C equality operator _(by Philipp Burckhardt)_
7172
- [`5b99ffb`](https://github.com/stdlib-js/stdlib/commit/5b99ffb24c9dec39925e95e3a5992cef9283e4eb) - **docs:** fix text block _(by Athan Reines)_

CONTRIBUTORS

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,15 @@ GK Bishnoi <gkishan1kyt@gmail.com>
5454
GURU PRASAD SHARMA <168292003+GURUPRASADSHARMA@users.noreply.github.com>
5555
Gaurav <gaurav70380@gmail.com>
5656
Gautam sharma <gautamkrishnasharma1@gmail.com>
57+
Girish Garg <garggirish2020@gmail.com>
5758
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
5859
Gunj Joshi <gunjjoshi8372@gmail.com>
5960
Gururaj Gurram <gururajgurram1512@gmail.com>
6061
Haroon Rasheed <51189276+haroon26@users.noreply.github.com>
61-
Harsh <149176984+hrshya@users.noreply.github.com>
62+
Harsh <harshyadav6078@gmail.com>
6263
HarshaNP <96897754+GittyHarsha@users.noreply.github.com>
6364
Harshita Kalani <harshitakalani02@gmail.com>
65+
Hemang Choudhary <coehemang@gmail.com>
6466
Hemant M Mehta <92446645+hemantmm@users.noreply.github.com>
6567
Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com>
6668
Jaimin Godhani <112328542+Jai0401@users.noreply.github.com>
@@ -86,6 +88,7 @@ Kohantika Nath <145763549+kohantikanath@users.noreply.github.com>
8688
Krishnam Agarwal <83017176+888krishnam@users.noreply.github.com>
8789
Krishnendu Das <86651039+itskdhere@users.noreply.github.com>
8890
Kshitij-Dale <152467202+Kshitij-Dale@users.noreply.github.com>
91+
Lalit Narayan Yadav <162928571+LalitNarayanYadav@users.noreply.github.com>
8992
Lovelin Dhoni J B <100030865+lovelindhoni@users.noreply.github.com>
9093
MANI <77221000+Eternity0207@users.noreply.github.com>
9194
Mahfuza Humayra Mohona <mhmohona@gmail.com>
@@ -190,3 +193,4 @@ pranav-1720 <123018993+pranav-1720@users.noreply.github.com>
190193
rahulrangers <127782777+rahulrangers@users.noreply.github.com>
191194
rainn <88160429+AmCodesLame@users.noreply.github.com>
192195
rei2hu <reimu@reimu.ws>
196+
zhanggy <geodaoyu@foxmail.com>

src/internal/sort2ins.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
* - The first array is sorted in increasing order according to absolute value.
2828
* - The algorithm has space complexity `O(1)` and worst case time complexity `O(N^2)`.
29-
* - The algorithm is efficient for small arrays (typically `N <= 20``) and is particularly efficient for sorting arrays which are already substantially sorted.
29+
* - The algorithm is efficient for small arrays (typically `N <= 20`) and is particularly efficient for sorting arrays which are already substantially sorted.
3030
* - The algorithm is **stable**, meaning that the algorithm does **not** change the order of array elements which are equal or equivalent.
3131
* - The input arrays are sorted in-place (i.e., the input arrays are mutated).
3232
*

0 commit comments

Comments
 (0)
0