From 28acfc45c1f834f078b3363765197eb0a3214bef Mon Sep 17 00:00:00 2001 From: Duth <96284452+rumduth@users.noreply.github.com> Date: Mon, 15 Jan 2024 13:32:23 -0600 Subject: [PATCH] Update Day_23.md Propose adding my solution of problem 96 --- Status/Day_23.md | 8 ++++++++ 1 file changed, 8 insertions(+) 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