Project Euler Problem Six
The sixth problem from Project Euler is about finding the difference between the sum of the squares of the first one hundred natural numbers and the square of the sum.
This problem is quite simple. Both numbers (sum of squares, and square of sum) can be found through simple iterations. First we find the square of sums.
Then we find the sum of squares.
Simple enough. Here the total solution is wrapped in a js function called through node.js
