Sprint 1 - Accomplished VS Attempted
What was attempted and what is accomplished
So far I have attempted
- To make a home page
- reinstate the previous timebox page
- change the theme of the website
- install the Java Kernel
- finish all the hacks
- clean up the website, make it something I’m proud of
So far I have accomplished
- Home page, but could be cleaned up a little
- Timebox page
- Theme change (kind of)
- Java Kernel
int factorial(int x)
{
int sum = 1;
for(int i=1;i<=x;i++)
{
sum *= i;
}
return sum;
}
System.out.println(factorial(6));
/*
js implementation
function factorial(x)
{
let sum = 1;
for(let i=1;i<=x;i++)
{
sum *= i;
}
return sum;
}
console.log(factorial(6));
*/
720