aayushi-droid / Python-Thunder

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

Caesar's Cipher #144

Closed sudesh1611 closed 3 years ago

sudesh1611 commented 3 years ago

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

Problem statement: Julius Caesar protected his confidential information by encrypting it using a cipher. Caesar's cipher (check Resources tab for more info) shifts each letter by a number of letters. If the shift takes you past the end of the alphabet, just rotate back to the front of the alphabet. In the case of a rotation by 3, w, x, y and z would map to z, a, b and c. Create a function that takes a string s (text to be encrypted) and an integer k (the rotation factor). It should return an encrypted string. Problem Link: https://edabit.com/challenge/C45TKLcGxh8dnbgqM


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

This repository is vaild for HacktoberFest2020

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

sudesh1611 commented 3 years ago

@aayushi-droid Please assign this to me

KuruvillaJacob02 commented 3 years ago

If this issue has not been assigned , it would be much appreciated if you would assign it to me

sudesh1611 commented 3 years ago

@KuruvillaJacob02 You can create your own issue with problem from https://edabit.com/challenges

KuruvillaJacob02 commented 3 years ago

Hello there, I've completed the code for ceasars cipher and checked the code on edabit and It passed the 4 tests, what should I do from this point onwards?

aayushi-droid commented 3 years ago

Thanks for messaging but priority will give to issue-author(who created the issue)

aayushi-droid commented 3 years ago

158