2020-07-05 19:01:27 +02:00
|
|
|
# is-palindrome
|
|
|
|
|
2020-09-13 00:15:21 +02:00
|
|
|
Created by [@Divlo](https://github.com/Divlo) on 5 July 2020.
|
2020-07-05 19:01:27 +02:00
|
|
|
|
2020-12-09 12:42:12 +01:00
|
|
|
## Instructions
|
2020-07-05 19:01:27 +02:00
|
|
|
|
|
|
|
The function should return `true` if a given string (case insensitive) is a palindrome and `false` if it's not the case.
|
|
|
|
|
2023-01-04 18:28:14 +01:00
|
|
|
**Note:** a **Palindrome** is a word, phrase, or sequence that reads the **same backwards as forwards**, e.g. Kayak.
|
2020-07-05 19:01:27 +02:00
|
|
|
|
2020-12-09 12:42:12 +01:00
|
|
|
## Examples
|
2020-07-05 19:01:27 +02:00
|
|
|
|
2021-06-09 20:31:45 +02:00
|
|
|
See the `test` folder for examples of input/output.
|