Skip to content

Instantly share code, notes, and snippets.

@chygoz2
Last active April 27, 2021 13:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chygoz2/277e3ba4f04e9b9e82d640dec8174f1d to your computer and use it in GitHub Desktop.
Save chygoz2/277e3ba4f04e9b9e82d640dec8174f1d to your computer and use it in GitHub Desktop.
Algo friday 3 solution
const startAndEnd = (nums, val) => {
if (!Array.isArray(nums) || typeof val !== 'number') throw new Error('Invalid input')
const min = Math.min(...nums);
let positions = [-1, -1]
let countLessThanVal = 0
let countOfVal = 0
let countOfMin = 0
for (let num of nums) {
if (num === min) countOfMin++
if (num < val) countLessThanVal++
if (num === val) countOfVal++
}
if (!countOfVal) return positions
positions[0] = val === min ? 0 : countLessThanVal + countOfMin - 1
positions[1] = positions[0] + countOfVal - 1
return positions
}
@meekg33k
Copy link

Hey @chygoz2, thank you for participating in Week 3 of #AlgorithmFridays.

Your solution looks neat in terms of correctness and robustness especially because you handled the edge cases really well. However, what do you think is the time complexity for solution?

Do you think we can do better?

@chygoz2
Copy link
Author

chygoz2 commented Apr 25, 2021

Well sorting the array results in a O(nlogn) time complexity, which basically supersedes the linear time complexity due to looping through the array. Unless there's a solution that doesn't involve sorting the array, this is the best I think is obtainable.

@chygoz2
Copy link
Author

chygoz2 commented Apr 25, 2021

Update: Solution has been updated, so previous comments are no longer valid.

@meekg33k
Copy link

Hello @chygoz2, congratulations, you are one of the winners of the $20 award for Week 3 of #AlgorithmFridays. 🎉🎉

Your solution was selected because it is most optimal in terms of time complexity. You were able to find a way to solve the problem without sorting the array.

I have written an in-depth blog post here about the solution. The post also announces you as one of the winners for Week 3 of #AlgorithmFridays.

We will contact you in less than 24 hours for your award.

Congratulations once again and thanks for participating!

@chygoz2
Copy link
Author

chygoz2 commented Apr 27, 2021

Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment