Created by codeguppy.com
- These coding challenges are intended for code newbies that want to practice JavaScript
- The challenges are designed to be solved only with basic JavaScript language constructs
- Although intended for beginners, advanced users can have fun too
- Try to solve at least 1 coding challenge per day
- Any solution that you find is a good solution… we are not looking for the perfect solution
- For convenience, when you work on these challenges, you can use an online coding playground, such as the one from https://codeguppy.com
- Share your solutions on Twitter with hashtag #codeguppy
- Feel free to share this booklet with your friends and invite them to complete the coding challenges
- This booklet contains also all the solutions to these challenges
- Have fun!
- Print numbers from 1 to 10
- Print the odd numbers less than 100
- Print the multiplication table with 7
- Print all the multiplication tables with numbers from 1 to 10
- Calculate the sum of numbers from 1 to 10
- Calculate 10!
- Calculate the sum of even numbers greater than 10 and less than 30
- Create a function that will convert from Celsius to Fahrenheit
- Create a function that will convert from Fahrenheit to Celsius
- Calculate the sum of numbers in an array of numbers
- Calculate the average of the numbers in an array of numbers
- Create a function that receives an array of numbers as argument and returns an array containing only the positive numbers
- Find the maximum number in an array of numbers
- Print the first 10 Fibonacci numbers without recursion
- Create a function that will find the nth Fibonacci number using recursion
- Create a function that will return a Boolean specifying if a number is prime
- Calculate the sum of digits of a positive integer number
- Print the first 100 prime numbers
- Create a function that will return in an array the first “p” prime numbers greater than “n”
- Rotate an array to the left 1 position
- Rotate an array to the right 1 position
- Reverse an array
- Reverse a string
- Create a function that will merge two arrays and return the result as a new array
- 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
- 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
- Create a function that will receive an array of numbers as argument and will return a new array with distinct elements
- Calculate the sum of first 100 prime numbers and return them in an array
- Print the distance between the first 100 prime numbers
- 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.
- Create a function that will return the number of words in a text
- Create a function that will capitalize the first letter of each word in a text
- Calculate the sum of numbers received in a comma delimited string
- Create a function that returns an array with words inside a text.
- Create a function to convert a CSV text to a “bi-dimensional” array
- Create a function that converts a string to an array of characters
- Create a function that will convert a string in an array containing the ASCII codes of each character
- Create a function that will convert an array containing ASCII codes in a string
- Implement the Caesar cypher
- Implement the bubble sort algorithm for an array of numbers
- Create a function to calculate the distance between two points defined by their x, y coordinates
- Create a function that will return a Boolean value indicating if two circles defined by center coordinates and radius are intersecting
- 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
- Create a function that will convert a string containing a binary number into a number
- Create a function to calculate the sum of all the numbers in a jagged array (contains numbers or other arrays of numbers on an unlimited number of levels)
- Find the maximum number in a jagged array of numbers or array of numbers
- Deep copy a jagged array with numbers or other arrays in a new array
- Create a function to return the longest word in a string
- Shuffle an array of strings
- Create a function that will receive n as argument and return an array of n random numbers from 1 to n. The numbers should be unique inside the array.
- Find the frequency of letters inside a string. Return the result as an array of arrays. Each subarray has 2 elements: letter and number of occurrences.
- Calculate Fibonacci(500) with high precision (all digits)
- Calculate 70! with high precision (all digits)