-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aec25f4
commit f663892
Showing
4 changed files
with
70 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,70 @@ | ||
# Palindrome | ||
|
||
## Python Program / Javascript Program to Check Palindrome. You can check where an integer or string is a Palindrome or not | ||
<hr> | ||
|
||
## Here are some screen shots | ||
|
||
<p align="center"> | ||
<img src="img/result2.png" title="result"> | ||
<br><hr> | ||
<img src="img/result1.png" title="result"> | ||
</p> | ||
|
||
<hr> | ||
|
||
## Editor used | ||
![alttext](https://img.shields.io/badge/Visual_Studio_Code-0078D4?style=for-the-badge&logo=visual%20studio%20code&logoColor=white) | ||
|
||
## Built with | ||
|
||
![js](https://img.shields.io/badge/JavaScript-F7DF1E?style=for-the-badge&logo=javascript&logoColor=black) | ||
![python](https://img.shields.io/badge/Python-3776AB?style=for-the-badge&logo=python&logoColor=white) | ||
<hr> | ||
|
||
## Cloning this repositary using command line | ||
1. Open **Git Bash**. | ||
1. Change the current working directory to the location where you want the cloned directory. | ||
1. Type `git clone https://github.com/Sagar-Sharma-7/Palindrome.git` | ||
1. Press **Enter** to create the clone of this repositary. | ||
|
||
<hr> | ||
|
||
## License | ||
### The scripts and documentation in this project are released under the MIT License | ||
![License: MIT](https://img.shields.io/badge/License-MIT-black.svg) | ||
|
||
<br> | ||
|
||
## Contributions | ||
### Contributions are welcome! see [Contribution's Guide](https://github.com/Sagar-Sharma-7/Palindrome/blob/main/CONTRIBUTING.md) | ||
|
||
<br> | ||
|
||
## Code of Conduct | ||
<img src="https://user-images.githubusercontent.com/1303154/88677602-1635ba80-d120-11ea-84d8-d263ba5fc3c0.gif" width="28px" alt="hi"> | ||
|
||
### Be nice. See our [code of conduct](https://github.com/Sagar-Sharma-7/Palindrome/blob/main/CODE_OF_CONDUCT.md) | ||
|
||
<br> | ||
<hr> | ||
|
||
## How to reach me? | ||
[ ![ForTheBadge makes-people-smile](https://img.shields.io/badge/Gmail-D14836?style=for-the-badge&logo=gmail&logoColor=white)](mailto:6969sagarsharma@gmail.com) | ||
<hr> | ||
<br> | ||
|
||
[![Follower](https://img.shields.io/github/followers/sagar-sharma-7?style=social)](https://github.com/Sagar-Sharma-7) | ||
<hr> | ||
<p float="left"> | ||
|
||
[![ForTheBadge built-with-love](https://forthebadge.com/images/badges/built-with-love.svg)](https://github.com/Sagar-Sharma-7) | ||
[ ![ForTheBadge makes-people-smile](https://forthebadge.com/images/badges/makes-people-smile.svg)](https://github.com/Sagar-Sharma-7) | ||
|
||
</p> | ||
|
||
|
||
[![alttext](https://img.shields.io/badge/GitHub-100000?style=for-the-badge&logo=github&logoColor=white)](https://github.com/Sagar-Sharma-7) | ||
|
||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,6 @@ const isPalindrome = (x) => { | |
} | ||
} | ||
|
||
isPalindrome() | ||
isPalindrome(12321) | ||
|
||
|