forked from vichitr/HacktoberfestForBeginners
-
Notifications
You must be signed in to change notification settings - Fork 0
palindrome.c #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
smilehacker-max
wants to merge
533
commits into
smilehacker-max:master
Choose a base branch
from
vichitr:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
palindrome.c #1
Conversation
This file contains hidden or 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
Create 1236A.cpp
created 1216D.cpp
Create 1230A.cpp
Create 1220A.cpp
Create 1230B.cpp
Create 1206A.cpp
Create 1221B.cpp
Javascript implementation of mergeSort Algorithm - properly documented - contains multistep explainations
Solution for a medium level Codechef problem SURCHESS (appeared in OCT 18 Long Challange)
Solutions by: Abhishek Tiwari (@become)
Signed-off-by: vatsa287 <i.mnshreevatsa@gmail.com>
ADD: radix_bin sort
…ay-generators random int array generators
hello world in spanish
created Привет, мир
Create HelloWorldInGerman
Added Codeforces Problem 996A - Hit the Lottery in C++
new print hello world
Hackerrank-Solutions
Create 461HammingDistance.java
Added "Print Pretty" and "Rectangle Area"
DS/C#/BinarySearchTree
Mergify: configuration update
linear_Search.py
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#include <stdio.h>
int main() {
int n, reversedN = 0, remainder, originalN;
printf("Enter an integer: ");
scanf("%d", &n);
originalN = n;
}