diff --git a/decrypting_caesars_cipher.py b/decrypting_caesars_cipher.py index e0da796..ca5fae1 100644 --- a/decrypting_caesars_cipher.py +++ b/decrypting_caesars_cipher.py @@ -32,6 +32,7 @@ def decrypt_generator(message, n): for i in range(0, n + 1): case = decrypt(message, i) yield case +# Changed By Remoted example python # Test test_case = "lq01Ir1I2xyI1ncrn2*" diff --git a/distance_on_number_line.py b/distance_on_number_line.py index 75cd77d..ccd61d6 100644 --- a/distance_on_number_line.py +++ b/distance_on_number_line.py @@ -12,3 +12,7 @@ def distance(x,y): print(distance(float(input("Value of X co-ordinate: ")), float(input("Value of Y co-ordinate: ")) ), "\n") else: flag = False + + + +# New_branch added Wow! \ No newline at end of file