Skip to content

style: use T[] instead of Array<T> #243

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sorts/shell_sort.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
* Average case - O(n log(n)^2)
*
* @param {T[]} arr - The input array
* @return {Array<T>} - The sorted array.
* @return {T[]} - The sorted array.
* @see [Shell Sort] (https://www.geeksforgeeks.org/shellsort/)
* @example shellSort([4, 1, 8, 10, 3, 2, 5, 0, 7, 6, 9]) = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
*/
export function shellSort<T>(arr: T[]): Array<T> {
export function shellSort<T>(arr: T[]): T[] {
// start with the biggest gap, reduce gap twice on each step
for (let gap = arr.length >> 1; gap > 0; gap >>= 1) {
for (let i = gap; i < arr.length; i++) {
Expand Down
Loading