Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

Projects in Awesome Lists tagged with palindrome

A curated list of projects in awesome lists tagged with palindrome .

https://github.com/je-suis-tm/recursion-and-dynamic-programming

Julia and Python recursion algorithm, fractal geometry and dynamic programming applications including Edit Distance, Knapsack (Multiple Choice), Stock Trading, Pythagorean Tree, Koch Snowflake, Jerusalem Cross, Sierpiński Carpet, Hilbert Curve, Pascal Triangle, Prime Factorization, Palindrome, Egg Drop, Coin Change, Hanoi Tower, Cantor Set, Fibonacci

dynamic-programming edit-distance fractal-algorithms fractal-geometry fractal-images fractals hanoi-towers hilbert-curve julia-training knapsack knapsack-problem koch-snowflake learning-julia palindrome pascal-triangle recursion recursive-algorithm sierpinski-carpet sierpinski-triangle tabulation

Last synced: 06 Nov 2024

https://github.com/kvanttt/freaky-sources

Collection of freaky sources written on C# (mostly quines in different forms).

palindrome polyglot quine

Last synced: 13 Oct 2024

https://github.com/ultirequiem/palindrome

🍂 Check if an string is palindrome

browser deno denoland nodejs palindrome palindrome-checker typescript

Last synced: 14 Oct 2024

https://github.com/ultirequiem/palindrome-api

:star: Get the word reversed and if it's a Palindrome

api deno oak palindrome

Last synced: 24 Oct 2024

https://github.com/pacifiquem/palindrome_checker-npm-package

npm package for checking if a world entered is a palindrome

javasc palindrome palindrome-number palindrome-string

Last synced: 23 Oct 2024

https://github.com/mindula-dilthushan/palindromic

This is palindrome application. text file reading. using python

palindrome python python3

Last synced: 12 Dec 2024

https://github.com/salvadoral25/hologram-testjob

Prueba Tecnica para Desarrollador Jr. Python

fizzbuzz job-test palindrome pandas psql python

Last synced: 03 Nov 2024

https://github.com/RobTillaart/palindrome

Library for palindrome search

arduino checker palindrome

Last synced: 24 Nov 2024

https://github.com/robtillaart/palindrome

Library for palindrome search

arduino checker palindrome

Last synced: 19 Nov 2024

https://github.com/alialmasi/pylindrome

Palindrome, done with python.

palindrome python

Last synced: 13 Dec 2024

https://github.com/helenanevesbr/python-challenges

Palindrome seeker, bin file decode, power calculator and more

bin-checker bin-generator bin-packing dice palindrome palindrome-checker python python3

Last synced: 06 Nov 2024

https://github.com/pandh4cker/anagpalinddetection

Anagram and Palindrome detection

anagram palindrome

Last synced: 17 Nov 2024

https://github.com/jerryfzhang/palindrome

A Node.js + React message board that takes messages from user and determine if the given input is a Palindrome.

bootstrap4 express express-js expressjs node node-js palindrom palindrome palindrome-number react

Last synced: 07 Nov 2024

https://github.com/rkstudio585/palindrome-checker-gui

Palindrome Checker GUI is a Python app with a PySide6 interface that checks if a string reads the same forward and backward. It supports multi-line input, offers light and dark themes, and includes an exit button. Easily switch themes and get instant palindrome results with a user-friendly interface.

palindrome palindrome-checker palindrome-gui palindrome-gui-python python

Last synced: 07 Nov 2024

https://github.com/emahtab/longest-palindromic-substring

Find longest palindromic substring in a string

leetcode palindrome problem-solving substring

Last synced: 07 Dec 2024

https://github.com/emahtab/palindrome-linked-list

Check If Linked List is Palindrome

leetcode linked-list palindrome problem-solving

Last synced: 07 Dec 2024

https://github.com/ryantusi/javascript-algorithms-data-structures

This repository hosts five projects completed during the course, showcasing various algorithms and data structure implementations using JavaScript.

caesars-cipher cash-register data-structures-and-algorithms freecodecamp-project javascript palindrome roman-number-converter telephone-number-validator

Last synced: 19 Nov 2024

https://github.com/yothgewalt/palindrome-in-go

A palindrome is a word, number, phrase, or other sequence of characters which reads the same backward as forward, such as madam or racecar. There are also numeric palindromes, including date/time stamps using short digits 11/11/11 11:11 and long digits 02/02/2020. For example; Tuesday, 22 February 2022 is considered a palindrome day (22022022 using dd-mm-yyyy format) as it can be read from left to right or vice versa. Sentence-length palindromes ignore capitalization, punctuation, and word boundaries.

go palindrome

Last synced: 07 Dec 2024

https://github.com/siddhant-k-code/palindrome-num-checker

Enter a number, to check whether it is a Palindrome number or not !

palindrome palindrome-number palindromechecker python

Last synced: 07 Nov 2024

https://github.com/reshmaharidhas/palindrome-checker

A desktop application to check if given input is palindrome or not a palindrome

character-counter desktop-app exe gui palindrome palindrome-checker python3 tkinter tkinter-gui tkinter-python

Last synced: 10 Dec 2024

https://github.com/lalabuy948/palindromefinder

Palindrome finder

dataset golang palindrome

Last synced: 17 Dec 2024

https://github.com/mirkorinke/palindrome_checker

A simple utility for detecting palindromes in strings. This tool verifies if a given text reads the same forwards and backwards, ignoring spaces, punctuation, and case sensitivity.

css frontend html javascript palindrome scss text-analysis typescript utility website

Last synced: 19 Dec 2024

https://github.com/mahedizaber51/palindromechecker

This repository contains a Python script that checks whether a given string is a palindrome or not.

palindrome palindrome-checker palindrome-finder palindrome-string palindromes

Last synced: 13 Nov 2024

https://github.com/aritrac1/palindromechecker

A Palindrome checker made using Kotlin and XMl

android android-application kotlin palindrome palindrome-checker xml

Last synced: 23 Nov 2024

https://github.com/danielpclark/multiples

Creates enumerators that step through integers from a union of two infinite sets of multiples.

creates-enumerators enumerator iterator math mathematics palindrome union

Last synced: 19 Nov 2024

https://github.com/robleto/palindrome

On any given day, the site will tell the user whether today's date is a palindrome or not.

palindrome palindrome-checker palindrome-date palindrome-dates

Last synced: 20 Dec 2024

https://github.com/bell-kevin/palindromerecursion

palindrome Recursion. In this project, you will determine if some user input is a palindrome by reversing the input into a new variable, using recursion, and compare the original input variable with the reversed input variable -- if they are the same, the input is a palindrome. A word palindrome is straightforward, just reverse the string. A phrase palindrome contains spaces -- the spaces are not included when testing for a palindrome. The phrase "was it a rat i saw" is an example of this. It is a palindrome, after you remove all the spaces. When you get the user input, remove spaces from the string. Make all letters lowercase -- an 'X' will not match 'x' when testing if strings are equal. Reverse the string. Compare the variables holding the input phrase and the reversed phrase (no spaces in either) to find out if the input is a palindrome. Note that the clean phrase, after removing spaces, is displayed, then the reversed phrase below it, for verification. Make sure the colons line up, so the variables line up. Then display the result, that it IS or IS NOT a palindrome. There must be a recursive method to reverse the string and return that reversed string. Run the project 4 times, with a word that is a palindrome, a word that is not a palindrome, a phrase that is a palindrome, and a phrase that is not a palindrome, and take a screenshot after each execution, like the sample sessions above. Submission: the specified screenshots (of execution of the program and successful unit tests) and the root folder for the project Pay careful attention to the rubric for this assignment. Note that you must use correct formatting in the code -- appropriate indentation is most important. You can use Shift-Alt-F to have NetBeans automatically format the code correctly. If the formatting is incorrect, it will be returned to you for changes with a grade of zero. Note: You need to submit the whole project for these assignments. In File Explorer, go to the location where you created the project. There will be a folder with the name of your project -- that is the root folder of the project. If you submit the root folder of the project, the instructor can run it on a different machine to grade it. If you don't submit the proper folder, it won't run on another machine, and the assignment will be marked with a zero.

palindrome palindrome-checker palindrome-string recursion unit-testing

Last synced: 23 Nov 2024

https://github.com/jmandel/palindrome-editor

Manual editor environment for palindromes

constrained-poetry palindrome poetry

Last synced: 04 Dec 2024

https://github.com/masaruhoshi/go-palindrome

A simple REST application handling palindromes

golang json-schema mongodb palindrome rest sequence-diagram

Last synced: 06 Nov 2024

https://github.com/sutharshantanu/git_practice_assignmnet

A collab assignment regarding GitHub Practice

palindrome prime

Last synced: 07 Nov 2024

https://github.com/cagataycali/palindrome

Palindrome text control homework with c#

csharp palindrome

Last synced: 06 Dec 2024

https://github.com/buildwithlal/javascript-algorithms

Basic Algorithms implemented in Javascript i.e Palindrome, Reverse Array, Binary Search, Bubble Sort, Fibonacci etc

algorithms binary-search bubble-sort fibonacci harmless-ransom-notes javascript palindrome quicksort-algorithm reverse-array reverse-words

Last synced: 08 Nov 2024

https://github.com/vikramdattu/beginnerprojectscpp

Contains solutions to simple puzzles useful for beginners to contribute to!

cpp multithreading palindrome

Last synced: 08 Nov 2024

https://github.com/rkstudio585/palindrome-checker-c

Palindrome Checker is a C program that determines if a string reads the same forward and backward. It ignores non-alphanumeric characters and is case-insensitive. The program runs in a loop, allowing multiple checks, and provides clear results and prompts to continue or exit.

c-project c-script palindrome palindrome-c palindrome-c-script palindrome-checker palindrome-number palindrome-string

Last synced: 07 Nov 2024

https://github.com/rkstudio585/palindrome-checker-python

Palindrome Checker is a Python program that checks if a string reads the same forwards and backwards. It handles multi-line inputs, ignores non-alphanumeric characters, and is case-insensitive. Users can continuously test strings and receive formatted feedback on whether each string is a palindrome.

palindrome palindrome-checker palindrome-gui palindrome-number palindrome-python palindrome-string python python-project rk rk-studio

Last synced: 07 Nov 2024

https://github.com/hadv/hallelujah

Conway's Game Of Life

algorithm conway-game game-of-life palindrome

Last synced: 07 Nov 2024

https://github.com/axelop96/chequea-palindromos

App que chequea si una palabra es un palindromo

css html javascript palindrome

Last synced: 09 Nov 2024

https://github.com/yashi-singh-1/palindrome-checker

A palindrome is a word or phrase that can be read the same way forwards and backwards, ignoring punctuation, case and spacing. This project is assigned by freeCodeCamp.

css css3 freecodecamp freecodecamp-challenge freecodecamp-frontend freecodecamp-project frontend frontend-development html html-css html-css-javascript html5 javascript javascript-project javascript-projects palindrome palindrome-checker web-development

Last synced: 10 Nov 2024

https://github.com/jdm79/palindrome-vanilla

basic palindrome checker made with html, js and css

palindrome palindromes

Last synced: 12 Nov 2024

https://github.com/gustavoaca1997/find-palindrome-unix

Detector de Palíndromos en el Sistema de Archivos

c file-system linux palindrome processing scheduling signal-processing unix

Last synced: 30 Nov 2024

https://github.com/fajarbc/anagram-words

Return anagram words if existed from the given string

anagram javascript palindrome

Last synced: 16 Nov 2024

https://github.com/fajarbc/anagram-palindrome

Find anagram words if existed from the given pattern. Check if two strings are anagram. Check if the given word is palindrome.

anagram hacktoberfest2022 hactoberfest javascript npm-package palindrome typescript

Last synced: 16 Nov 2024

https://github.com/kevingimbel/palipali

Check if a string is a palindrome.

palindrome text-analyzer

Last synced: 16 Nov 2024

https://github.com/clach04/brython_tip_calc

palindrome tipping calculator in Python / Brython / Javascript

brython calculator javascript palindrome palindrome-number python tip-calculator

Last synced: 18 Nov 2024

https://github.com/zyn10/palindrome_using_stack

Find palindrome using stack in cpp

cpp datastructures palindrome

Last synced: 18 Nov 2024

https://github.com/haronbh/palindrome

A C++ program to determine if a word is a palindrome. It checks if a word reads the same forwards and backwards, providing feedback on whether the input word exhibits this characteristic.

cplusplus palindrome palindrome-checker palindrome-string palindrome-validator

Last synced: 01 Dec 2024

https://github.com/aadewunmi/palindrome_project

Python (console-based) program to find out whether a word or sentence is a Palindrome (https://en.wikipedia.org/wiki/Palindrome).

palindrome python

Last synced: 25 Nov 2024