diff --git a/Status/Day_23.md b/Status/Day_23.md index d7cf0c6..d7b22a7 100644 --- a/Status/Day_23.md +++ b/Status/Day_23.md @@ -176,6 +176,14 @@ def displayer(groups): print(''.join(x)) displayer(grouper(string, width_length)) +``` +```Solution by Thong Nguyen +def func96(): + msg = input() + width = int(input()) + for i in range(0,len(msg),width): + print(msg[i:i+width]) + ``` --- # Question 97