##Log:
-
1_solveMeFirst: adding two integers
-
2_simpleArraySum: finding the sum of all the contents in an array
-
3_compareTheTriplets: creating an array of values representing two scores, each score having three attributing values which are calculated to see which score is greater
-
4_aVeryBigSum: finding the sum of long numbers in an array
-
5_diagonalDifference: in a 2D, find the absolute difference between the two diagonal lines of integers
-
6_plusMinus: an array of random positive and negative integers, and zeros are generated; of the integers in the array you must calculate the percent of positive, negative, and zero integers
-
7_staircase: take in an int, and create print a stair with the specified amount of stairs relative to the int
-
8_timeConversion: take in a 12-hour time, separate the each portion of the time, and convert it to a 24-hour time
-
9_circularArrayRotation: take in an array of numbers, and shift all of the numbers to a specified index
-
10_miniMaxSum: take in five integers, find the sum, and then subtract the min/max sum of four of the numbers from the sum
-
11_designerPDFViewer: find the area of a word in as if in a PDF by calculating the fixed width by the maximum height of all the letters within the word
-
12_kangaroo: two separate kangaroos are hopping, both starting at a different point, with a different rate; find if the kangaroos ever will jump at the same place
-
13_angryProfessor: calculate if a professor will cancel class; if his/her required amount of students do no show up on time, he/she cancels class
-
14_beautifulDaysAtTheMovies: see how many days, between two given day values, that the absolute value of the difference of the day and its day value reversed, evenly divisible by a specified number
-
15_pangrams: from an input sentence, see if it is a pangram (a sentence containing every letter in the alphabet)
-
16_caesarCipher: take an input, and shift the message by a specified amount of characters
- 17_viralAdvertising: see how many people an ad is advertised to after a specified number of days due to exponential growth, in relation to people who like the ad, and those who do Not
2)18_camelCase: find how many words are in a camelcase string
- 19_repeatedString: with an input string, find how many a's are in it when it is repeated a number of times
2)20_theLoveLetterMystery: by reducing the value of a letter, see how many operations it takes to reduce a word to a palindrome
-
21_marsExploration: from an altered message saying 'SOS' a specified amount of times, find how many errors there are in the message when received
-
22_alternatingCharacters: in a string of letters of A and B, see how many deletions must be made so that the letters alternate
-
23_divisibleSumPairs: from an array, see how many pairs of two indexes added together are evenly divisible by a specified int (submitted late on February 2, 2017)
-
24_findDigits: find how many individual number characters in a number can divide evenly the primary number (submitted late on February 2, 2017)