aayushi-droid / Python-Thunder

A curated list of Python applications
MIT License
86 stars 158 forks source link

Count Palindrome Numbers in a Range #240

Closed sawamoha20 closed 4 years ago

sawamoha20 commented 4 years ago

Before jumping into Pr first comment for assign.All Problem from Edabit. Link is mandatory to add

Problem statement: Create a function that returns the number of palindrome numbers in a specified range (inclusive). Problem Link: https://edabit.com/challenge/BRoBDeEc2be7wm8BD Examples :

 countPalindromes(1, 10) ➞ 9

 countPalindromes(555, 556) ➞ 1

 countPalindromes(878, 898) ➞ 3

Before submitting a PR please Check some details. Check Edabit for problem task

This repository is valid for HacktoberFest2020

Read before making PR - How to contribute on Github Good Luck,

BassCoder2808 commented 4 years ago

Hi I would like you to assign this issue to me. I have solved the complete problem and here is the output for the same. PS C:\Users\vedant jolly\Desktop> python .\hacktober.py 1 10 9

PS C:\Users\vedant jolly\Desktop> python .\hacktober.py 878 898 3

I have performed the above code in python,

ghost commented 4 years ago

Hello! I would like to have this assigned to me.