Each directory contains a separate problem that you'll be tasked with solving. Inside each directory, you'll find instructions for that problem, along with a test file as well as an empty skeleton file.
There isn't an official prescribed order for tackling the problems, though a subjective ranking of the given problems from easiest to hardest might go something like this:
stock_prices
recipe_batches
eating_cookies
rock_paper_scissors
making_change
- [Stretch Problem]
knapsack
For each problem, cd
into the directory, read the instructions for the
problem, implement your solution in the skeleton file, then test it using the
provided test file.
The later problems definitely get progressively more difficult, especially when it comes to deriving a more performant solution. Don't feel bad if you aren't able to figure them out within the timeframe of the sprint. Again, always remember that so long as you put in an earnest effort into attempting to solve these problems, you're learning and getting better. Getting the 'right answer' is just the proverbial cherry on top of the sundae.
This is a two day project so plan your time accordingly!
When you're confronted with a problem you haven't encountered before, the general strategy (adapted from George Pólya's Problem Solving Principles) is as follows:
https://github.com/LambdaSchool/CS-Wiki/wiki/Lambda-Problem-Solving-Framework