taesik

Nth Smallest Element 본문

functions and trick/typescript_javascript

Nth Smallest Element

taesikk 2022. 1. 23. 14:22
export function nthSmallest(arr: number[], pos: number) {
  return arr.sort((a, b) => a - b)[pos - 1]
}