odin-default-js-exercises/09_palindromes
Danny Chhouen 10257c0934 added solutions for 1 through 12 2021-12-06 19:31:45 -08:00
..
README.md added solutions for 1 through 12 2021-12-06 19:31:45 -08:00
palindromes.js added solutions for 1 through 12 2021-12-06 19:31:45 -08:00
palindromes.spec.js added solutions for 1 through 12 2021-12-06 19:31:45 -08:00

README.md

Exercise 09 - Palindromes

Write a function that determines whether or not a given string is a palindrome.

A palindrome is a string that is spelled the same both forwards and backwards, usually without considering punctuation or word breaks:

some palindromes:

  • A car, a man, a maraca.
  • Rats live on no evil star.
  • Lid off a daffodil.
  • Animal loots foliated detail of stool lamina.
  • A nut for a jar of tuna.

/*

  1. understand the problem
  2. research and rewrite the problem
  3. pseudocode problem

*/

palindromes('racecar') // true
palindromes('tacos') // false