About me
My Github Page
My Codepen Page
Free Code Camp
Free Code Camp
Forum
Basic JavaScript Algorithms I've solved and embedded in forms
Welcome
Type your name:
_
Basic Algorithm challenge - Jan 17, 2017
This function reverses any string.
reverse me
_
Basic Algorithm challenge - Jan 17, 2017
This function factorializes any positive integer. (Any number up to 170 actually - any higher number results in a factorial too high to handle). Limit is set to 170.
_
Basic Algorithm challenge - Jan 19, 2017
This function checks a string (alpha-numeric only) and returns true if it's a palindrome. Spaces, punctuation and symbols are
ignored
.
_
Accidental result while trying to solve the Title Case a Sentence challenge - early Feb 2017
Abbreviate any sentence to an upper case ACCRONYM
_
Personal challenge - Feb 11, 2017
Randomly selects words from any paragraph and returns a scrambled paragraph of equal length.
Some words may be used more than once.
This was fixed - no same word reused.
Apparently we had reached a great height in the atmosphere, for the sky was a dead black, and the stars had ceased to twinkle. By the same illusion which lifts the horizon of the sea to the level of the spectator on a hillside, the sable cloud beneath was dished out, and the car seemed to float in the middle of an immense dark sphere, whose upper half was strewn with silver. Looking down into the dark gulf below, I could see a ruddy light streaming through a rift in the clouds.
Intended result while trying to produce a second solution for the Title Case a Sentence challenge - March 2, 2017
Reverse words in a string
_
Intermediate Algorithm challenge - April 14, 2017
Convert the given number into a roman numeral.(Any number up to 399,999. I did not program the roman numeral equivalent for 500,000 and it would be required to convert 400,000.)
_