|
13 | 13 | #13: Create a function that will convert from Fahrenheit to Celsius |
14 | 14 | #14: Print in Console the first 10 Fibonacci numbers without recursion |
15 | 15 | #15: Create a function that will find the nth Fibonacci number using recursion |
16 | | -#16: Create a function that will return a Boolean specifying if a number is prime |
17 | | -#17: Calculate the sum of digits of a positive integer number |
18 | | -#18: Print in Console the first 100 prime numbers |
19 | | -#19: Create a function that will return in an array the first "nPrimes" prime numbers greater than a particular number "startAt" |
20 | | -#20: Rotate an array to the left 1 position |
21 | | -#21: Rotate an array to the right 1 position |
22 | | -#22: Reverse an array |
23 | | -#23: Reverse a string |
24 | | -#24: Create a function that will merge two arrays and return the result as a new array |
25 | | -#25: Create a function that will receive two arrays of numbers as arguments and return an array composed of all the numbers that are either in the first array or second array but not in both |
26 | | -#26: Create a function that will receive two arrays and will return an array with elements that are in the first array but not in the second |
27 | | -#27: Create a function that will receive an array of numbers as argument and will return a new array with distinct elements |
28 | | -#28: Calculate the sum of first 100 prime numbers |
29 | | -#29: Print in Console the distance between the first 100 prime numbers |
30 | | -#30-a: Create a function that will add two positive numbers of indefinite size. The numbers are received as strings and the result should be also provided as string. |
31 | | -#31a. Create a function that will return the number of words in a text |
32 | | -#32. Create a function that will capitalize the first letter of each word in a text |
33 | | -#33. Calculate the sum of numbers received in a comma delimited string |
34 | | -#34. Create a function that will return an array with words inside a text |
35 | | -#35. Create a function to convert a CSV text to a “bi-dimensional” array |
36 | | -#36. Create a function that converts a string to an array of characters |
37 | | -#37. Create a function that will convert a string in an array containing the ASCII codes of each character |
38 | | -#38. Create a function that will convert an array containing ASCII codes in a string |
39 | | -#39. Implement the Caesar cypher |
40 | | -#40. Implement the bubble sort algorithm for an array of numbers |
41 | | -#41. Create a function to calculate the distance between two points defined by their x, y coordinates |
42 | | -#42. Create a function that will return a Boolean value indicating if two circles defined by center coordinates and radius are intersecting |
43 | | -#43. Create a function that will receive a bi-dimensional array as argument and a number and will extract as a unidimensional array the column specified by the number |
44 | | -#44. Create a function that will convert a string containing a binary number into a number |
45 | | -#45. Create a function to calculate the sum of all the numbers in a jagged array (array contains numbers or other arrays of numbers on an unlimited number of levels) |
46 | | -#46-a. Find the maximum number in a jagged array of numbers or array of numbers |
47 | | -#47. Deep copy a jagged array with numbers or other arrays in a new array |
48 | | -#48. Create a function to return the longest word(s) in a string |
49 | | -#49. Shuffle an array of strings |
50 | | -#50. Create a function that will receive n as argument and return an array of n unique random numbers from 1 to n. |
51 | | -#51. Find the frequency of characters inside a string. Return the result as an array of objects. Each object has 2 fields: character and number of occurrences. |
52 | | -#52. Calculate Fibonacci(500) with high precision (all decimals) |
53 | | -#53. Calculate 70! with high precision (all digits) |
| 16 | +#16: Check Leap Year Using if...else? |
| 17 | +#17: Create a function that accepts an array and returns the last item in the array. |
| 18 | +#18: Calculate the sum of digits of a positive integer number |
| 19 | +#19: Print in Console the first 100 prime numbers |
| 20 | +#20: Create a function that will return in an array the first "nPrimes" prime numbers greater than a particular number "startAt" |
| 21 | +#21: Rotate an array to the left 1 position |
| 22 | +#22: Rotate an array to the right 1 position |
| 23 | +#23: Reverse an array |
| 24 | +#24: Reverse a string |
| 25 | +#25: Create a function that will merge two arrays and return the result as a new array |
| 26 | +#26: Create a function that will receive two arrays of numbers as arguments and return an array composed of all the numbers that are either in the first array or second array but not in both |
| 27 | +#27: Create a function that will receive two arrays and will return an array with elements that are in the first array but not in the second |
| 28 | +#28: Create a function that will receive an array of numbers as argument and will return a new array with distinct elements |
| 29 | +#29: Calculate the sum of first 100 prime numbers |
| 30 | +#30: Print in Console the distance between the first 100 prime numbers |
| 31 | +#31-a: Create a function that will add two positive numbers of indefinite size. The numbers are received as strings and the result should be also provided as string. |
| 32 | +#32. Create a function that will return the number of words in a text |
| 33 | +#33. Create a function that will capitalize the first letter of each word in a text |
| 34 | +#34. Calculate the sum of numbers received in a comma delimited string |
| 35 | +#35. Create a function that will return an array with words inside a text |
| 36 | +#36. Create a function to convert a CSV text to a “bi-dimensional” array |
| 37 | +#37. Create a function that converts a string to an array of characters |
| 38 | +#38. Create a function that will convert a string in an array containing the ASCII codes of each character |
| 39 | +#39. Create a function that will convert an array containing ASCII codes in a string |
| 40 | +#40. Implement the Caesar cypher |
| 41 | +#41. Implement the bubble sort algorithm for an array of numbers |
| 42 | +#42. Create a function to calculate the distance between two points defined by their x, y coordinates |
| 43 | +#43. Create a function that will return a Boolean value indicating if two circles defined by center coordinates and radius are intersecting |
| 44 | +#44. Create a function that will receive a bi-dimensional array as argument and a number and will extract as a unidimensional array the column specified by the number |
| 45 | +#45. Create a function that will convert a string containing a binary number into a number |
| 46 | +#46. Create a function to calculate the sum of all the numbers in a jagged array (array contains numbers or other arrays of numbers on an unlimited number of levels) |
| 47 | +#47-a. Find the maximum number in a jagged array of numbers or array of numbers |
| 48 | +#48. Deep copy a jagged array with numbers or other arrays in a new array |
| 49 | +#49. Create a function to return the longest word(s) in a string |
| 50 | +#50. Shuffle an array of strings |
| 51 | +#51. Create a function that will receive n as argument and return an array of n unique random numbers from 1 to n. |
| 52 | +#52. Find the frequency of characters inside a string. Return the result as an array of objects. Each object has 2 fields: character and number of occurrences. |
| 53 | +#53. Calculate Fibonacci(500) with high precision (all decimals) |
| 54 | +#54. Calculate 70! with high precision (all digits) |
54 | 55 |
|
55 | 56 |
|
56 | 57 | #01. Create a function that takes two numbers as arguments and return their sum. |
|
0 commit comments