Skip to content

Commit bec9e2f

Browse files
committed
Update First Factorial
1 parent d5226ef commit bec9e2f

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

First Factorial

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/***************************************************************************************
2+
* *
3+
* CODERBYTE BEGINNER CHALLENGE *
4+
* *
5+
* First Factorial *
6+
* Using the JavaScript language, have the function FirstFactorial(num) take the num *
7+
* parameter being passed and return the factorial of it (ie. if num = 4, *
8+
* return (4 * 3 * 2 * 1)). For the test cases, the range will be between 1 and 18. * *
9+
* *
10+
* SOLUTION *
11+
* You can either use an iterative or recursive function to solve this challenge. *
12+
* I am going to use an interative function. I am going to start with a value of 1 *
13+
* for my total and then keep multiplying it by the next number until I reach num. *
14+
* *
15+
* This function needs to account for a possible outlier - One and Zero. *
16+
* If num is 1 or 0 then the answer is 1. By setting tot to value of 1 at *
17+
* initialization, then it guaranteees that 1 will be returned if num is ever 0 or 1. *
18+
* Steps for solution *
19+
* 1) Set var tot to 1. *
20+
* 2) Loop from 2 to num and multiple tot by num to get new tot. *
21+
* 3) Return tot for answer. *
22+
* *
23+
***************************************************************************************/
24+
125
function FirstFactorial(num) {
226

327
var tot = 1;

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy