Skip to main content

All Questions

Filter by
Sorted by
Tagged with
4 votes
1 answer
553 views

React.js Nested Nav Bar

This was written for a coding challenge for a company I recently starting working for. I'm looking for any suggestions on how to clean up the code, as well as any issues anyone thinks may occur as it ...
Pnsk's user avatar
  • 41
3 votes
1 answer
1k views

Recursively find TypeScript files imported/exported from an entry point

I'd like to know what's the best practice as functional programming in JavaScript to work with arrays and passing them as an argument to a recursive function that may run itself within its branch. In ...
PRAISER's user avatar
  • 151
3 votes
4 answers
1k views

Finding the max sequence finder

Problem Statement Find the max sequence finder. findMaxSequence([3, 2, 3, 4, 2, 2, 4]); ...
overexchange's user avatar
  • 3,401
4 votes
1 answer
77 views

Factoring Integers the fun way

Code dump: ...
Simon Kuang's user avatar
5 votes
2 answers
9k views

Recursively walking a tree to build up a new one

Could this be better factored as a reduce? ...
Dustin Getz's user avatar