From 04357893b3201ec10bd34bb528dc654ebad67bee Mon Sep 17 00:00:00 2001 From: Won Joon Thomas Choi <113500771+724thomas@users.noreply.github.com> Date: Mon, 21 Sep 2026 19:55:46 +0900 Subject: [PATCH] Create 66. Plus One.py --- .../\354\265\234\354\233\220\354\244\200/66. Plus One.py" | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 "leetcode3/\354\265\234\354\233\220\354\244\200/66. Plus One.py" diff --git "a/leetcode3/\354\265\234\354\233\220\354\244\200/66. Plus One.py" "b/leetcode3/\354\265\234\354\233\220\354\244\200/66. Plus One.py" new file mode 100644 index 00000000..f04b591b --- /dev/null +++ "b/leetcode3/\354\265\234\354\233\220\354\244\200/66. Plus One.py" @@ -0,0 +1,3 @@ +class Solution: + def plusOne(self, digits: list[int]) -> list[int]: + return [int(c) for c in str(int("".join(str(d) for d in digits)) + 1)]