mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-06 01:18:23 +08:00
feat: Test running overhaul, switch to Prettier & reformat everything (#1407)
* chore: Switch to Node 20 + Vitest * chore: migrate to vitest mock functions * chore: code style (switch to prettier) * test: re-enable long-running test Seems the switch to Node 20 and Vitest has vastly improved the code's and / or the test's runtime! see #1193 * chore: code style * chore: fix failing tests * Updated Documentation in README.md * Update contribution guidelines to state usage of Prettier * fix: set prettier printWidth back to 80 * chore: apply updated code style automatically * fix: set prettier line endings to lf again * chore: apply updated code style automatically --------- Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Co-authored-by: Lars Müller <34514239+appgurueu@users.noreply.github.com>
This commit is contained in:
@ -9,19 +9,38 @@
|
||||
* @complexity: O(log(n)) (worst case)
|
||||
* @flow
|
||||
*/
|
||||
const findMaxPointIndex = (array, rangeStartIndex, rangeEndIndex, originalLength) => {
|
||||
const findMaxPointIndex = (
|
||||
array,
|
||||
rangeStartIndex,
|
||||
rangeEndIndex,
|
||||
originalLength
|
||||
) => {
|
||||
// find index range middle point
|
||||
const middleIndex = rangeStartIndex + parseInt((rangeEndIndex - rangeStartIndex) / 2)
|
||||
const middleIndex =
|
||||
rangeStartIndex + parseInt((rangeEndIndex - rangeStartIndex) / 2)
|
||||
|
||||
// handle array bounds
|
||||
if ((middleIndex === 0 || array[middleIndex - 1] <= array[middleIndex]) &&
|
||||
(middleIndex === originalLength - 1 || array[middleIndex + 1] <= array[middleIndex])) {
|
||||
if (
|
||||
(middleIndex === 0 || array[middleIndex - 1] <= array[middleIndex]) &&
|
||||
(middleIndex === originalLength - 1 ||
|
||||
array[middleIndex + 1] <= array[middleIndex])
|
||||
) {
|
||||
return middleIndex
|
||||
} else if (middleIndex > 0 && array[middleIndex - 1] > array[middleIndex]) {
|
||||
return findMaxPointIndex(array, rangeStartIndex, (middleIndex - 1), originalLength)
|
||||
return findMaxPointIndex(
|
||||
array,
|
||||
rangeStartIndex,
|
||||
middleIndex - 1,
|
||||
originalLength
|
||||
)
|
||||
} else {
|
||||
// regular local max
|
||||
return findMaxPointIndex(array, (middleIndex + 1), rangeEndIndex, originalLength)
|
||||
return findMaxPointIndex(
|
||||
array,
|
||||
middleIndex + 1,
|
||||
rangeEndIndex,
|
||||
originalLength
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user