All Questions
5 questions
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 ...
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 ...
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]);
...
4
votes
1
answer
77
views
Factoring Integers the fun way
Code dump:
...
5
votes
2
answers
9k
views
Recursively walking a tree to build up a new one
Could this be better factored as a reduce?
...