Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

New branch #89

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions decrypting_caesars_cipher.py
Original file line number Diff line number Diff line change
Expand Up @@ -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*"
Expand Down
4 changes: 4 additions & 0 deletions distance_on_number_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -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!