We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47fc968 commit 002fefcCopy full SHA for 002fefc
examples/refactor/input.py
@@ -2,7 +2,7 @@
2
def encode_char(char, offset):
3
return chr(
4
(
5
- (ord(char) - ord(" ") + offset) %
+ (ord(char) - ord(" ") + offset) %
6
(ord("~") - ord(" ") + 1)
7
) + (ord(" "))
8
)
examples/refactor/output/caesar_cipher.py
@@ -1,7 +1,7 @@
1
0 commit comments