123456789101112131415 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.partitionSelectDocs = void 0;
- var partitionSelectDocs = {
- name: 'partitionSelect',
- category: 'Matrix',
- syntax: ['partitionSelect(x, k)', 'partitionSelect(x, k, compare)'],
- description: 'Partition-based selection of an array or 1D matrix. Will find the kth smallest value, and mutates the input array. Uses Quickselect.',
- examples: ['partitionSelect([5, 10, 1], 2)', 'partitionSelect(["C", "B", "A", "D"], 1)'],
- seealso: ['sort']
- };
- exports.partitionSelectDocs = partitionSelectDocs;
|