Santiago Valdarrama wrote a blog post entitled “Five problems every software engineer should be able to solve in less than an hour””. Stop for a second and check it out!
If these five problems really take an hour to solve, that’s much too long for a WOD, so let’s just try to solve the first one. More important, we’ll use this as an opportunity to practice using GitHub, git, IntelliJ IDEA, Javascript, Underscore, and ESLint.
For this practice WOD, solve the following variation of the first of the five problems that Santiago Valdarrama thinks should take less than an hour.
Ready? Let’s begin:
Start your timer.
Create an empty GitHub repo called “sumofnumbers” and clone it to your local computer. Don’t forget to check the box so that a README file is created.
Open the local repo in IntelliJ. If IntelliJ asks if you want to add a .gitignore file, you can say yes.
npm install
to install ESLint.Create two files: index.html and sumofnumbers.js. The index.html should load the Underscore package (available at <script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
) followed by sumofnumbers.js. Note that the order of loading is important!
Write four functions that return the sum of the numbers in a given list using a for-loop, a while-loop, recursion, and underscore. Call them sumFor, sumWhile, sumRecursion, and sumTheSimpleWay.
Make sure ESLint is running. For example, add newlines to the end of a file to see that an ESLint error is triggered.
Make sure that there is a green checkmark indicating that ESLint does not detect any problems with your code.
Commit your finished program to GitHub.
Check that your code is on GitHub.
Rx: < 20 min Av: 20 - 25 min Sd: 25 - 30 min DNF: 30+ min
Once you’ve finished trying the WOD for the first time, watch me do it.
You’ll learn significantly less from watching me solve the WOD if you haven’t attempted the WOD yourself first.
While it’s an achievement to finish the WOD no matter how long it takes, you might experience “diminishing returns” if you work longer than the DNF time. Thus, it is usually strategic to stop working at the DNF time and watch my solution.
After watching my solution, I recommend that you repeat the WOD if you have not achieved at least Av performance. If so, be sure to:
Feel free to keep trying until you make Rx if that’s of interest to you.
By the time and date indicated on the Schedule page, submit this assignment via Laulima.
You must grant read access to this repo to the TA for your section. To do this:
Your submission should contain:
A link to the GitHub repository created as a result of your latest attempt at this practice WOD. Make sure you include the complete URL so that I can click on it in my mailer. Note: the final commit to this repo must have been made before the submission time and date, otherwise you will not receive credit for this assignment.
The number of times you have attempted this practice WOD so far, and for each time, how long it took you.
You will receive full credit for this practice WOD as long as you have attempted it at least once and submitted your work on Laulima with all required data before the due date. Your code does not have to run perfectly for you to receive full credit. However, if you do not repeat each practice WOD until you can finish it successfully in at least AV time, you are unlikely to do well on the in-class WOD. To reduce the stress associated with this course, I recommend that you repeat each practice WOD as many times as necessary to achieve at least AV before its due date.