Skip to content

Commit ab2d9ba

Browse files
author
moses
committed
alphanum
1 parent 5c29992 commit ab2d9ba

10 files changed

+17221
-2
lines changed

App.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ def default_route():
2424
sock.bind(('localhost', 0))
2525
port = sock.getsockname()[1]
2626
sock.close()
27-
app.run(port=port)
27+
app.run(port=5000)

cis2020

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit bc826dfb9a7aba036a7eb85bb613e1146c5118e5

codeitsuisse/routes/secretMessage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def encoder(n, text):
2828

2929
text = text.replace(' ', '')
3030
text = text.upper()
31-
ch_list = [ch for ch in text if ch.isalpha()]
31+
ch_list = [ch for ch in text if ch.isalnum()]
3232

3333
# method creates the split strings
3434
start = 0
577 KB
Binary file not shown.

0 commit comments

Comments
 (0)