From db47396e3732af5672558967e3a7fa81fb45bdf1 Mon Sep 17 00:00:00 2001 From: Eduardo Date: Tue, 5 May 2026 08:13:11 -0300 Subject: [PATCH] docs: improve README explanation for palindrome implementations Added section on multiple palindrome implementations and recommended starting file. --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index a9b4e43..a8c8ced 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,28 @@ python palindrome.py Congratulations! You have run your first Python project. Here is an explanation of what a palindrome is, if you didn't know: https://en.wikipedia.org/wiki/Palindrome +## Multiple Implementations + +This repository contains multiple palindrome checker implementations created by different contributors. + +Files such as: + +* palindrome.py +* palindrome1.py +* palindrome3.py +* palindrome4.py +* palindrome_checker4.py +* palin.py + +show different beginner-friendly approaches to solving the same problem. + +For beginners, the recommended file to start with is: + +python `palindrome1.py` + +since it provides a simpler and easier-to-understand implementation of palindrome checking. + + ### Screenshots ![screenshot](https://user-images.githubusercontent.com/15849927/32120845-be415c32-bb77-11e7-9764-dcc03d6401f1.png)