Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 1.28 KB

README.md

File metadata and controls

43 lines (28 loc) · 1.28 KB

js-exercises

A collection of introductory programming exercises implemented and tested in JavaScript.

README en Français

Exercises

Easy

  • Find the largest number in an array
  • Convert internationalization to i18n
  • Return multiplication tables for 10 as a string

Medium

  • Determine if a word is a palindrome
  • Sum of 0 to n for even/odd/all
  • Return a pyramid string with a height of n

Hard

  • Fizzbuzz with a start and end
  • Check if array contains duplicate int
  • Find the plurality elements from a list
  • Find the majority element from a list

Recursion

  • Calculate a factorial using iteration and recursion
  • Find the nth Fibonacci sequence number using iteration and recursion
  • Reverse a string using iteration and recursion

Harder

  • Check if a word is an anagram
  • Sort a list in place

Todos