From d4e0860e6abaece40c385980f769ba0f6863e190 Mon Sep 17 00:00:00 2001 From: yenru0 Date: Thu, 8 Aug 2024 09:37:20 +0900 Subject: [PATCH] complete 15725.py --- zeta_python/completed/15725.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 zeta_python/completed/15725.py diff --git a/zeta_python/completed/15725.py b/zeta_python/completed/15725.py new file mode 100644 index 0000000..40fbe39 --- /dev/null +++ b/zeta_python/completed/15725.py @@ -0,0 +1 @@ +print((lambda x: x[0] if len(x) > 1 else 0)(list(map(lambda x: 1 if x == '' else -1 if x == '-' else int(x), input().split('x'))))) \ No newline at end of file