Skip to content

Instantly share code, notes, and snippets.

View Aleksey-Danchin's full-sized avatar

Алексей Данчин Aleksey-Danchin

View GitHub Profile
@ershovio
ershovio / toxic_comments_example.ipynb
Created May 2, 2021 19:59
An example of data science task
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Aleksey-Danchin
Aleksey-Danchin / quickSort.js
Last active March 18, 2021 17:56
Быстрая сортировка числового ряда на месте (JavaScript)
function quickSort(array) {
if (array.length < 2) {
return array
}
quickSortMaster(0, array.length - 1)
return array
function quickSortMaster (left, right) {