0

Shorten the code

This is my solution to "convert us date to eu date" problem from code coach. I would appreciate any suggestions as to how to shorten the code. Thanks in advance! https://code.sololearn.com/cL4y2Q3pc60Z/?ref=app

6th Jan 2020, 11:55 AM
Vitaliy Reshetar
Vitaliy Reshetar - avatar
4 ответов
+ 1
Use split method. If str.char(0) is a number then just split by / And swap 0 and 1 Else split by space, find string equalent by array or switch cases. And split 2nd element by comma, remove spaces. I did it in this way... Took 20 lines code only....
6th Jan 2020, 1:13 PM
Jayakrishna 🇮🇳
+ 1
Vitaliy Reshetar wel come...
6th Jan 2020, 1:23 PM
Jayakrishna 🇮🇳
0
Jayakrishna, thank you! It was very helpful!
6th Jan 2020, 1:19 PM
Vitaliy Reshetar
Vitaliy Reshetar - avatar
0
# Licensed to the Software Freedom Conservancy (SFC) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The SFC licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. """The WebDriver implementation.""" import base64 import contextlib import copy import os import pkgutil import tempfile import types import warnings import zipfile from abc import ABCMeta from base64 import b64decode from base64 import urlsafe_b64encode from contextlib import asynccontextmanager from contextlib import contextmanager from importlib import import_module from typing import Dict from typing import List from typing import Optional from typing import Type from typing import Union from selenium.common.exceptions import InvalidArgumentException from selenium.common.exceptions import JavascriptException from selenium.common.exceptions import NoSuchCookieException from selenium.common.exceptions import NoSuchElementException from selenium.common.exceptions import WebDriverException from selenium.webdriver.common.bidi.browser import Browser from selenium.webdriver.common.bidi.browsing_context import BrowsingContext from selenium.webdriver.common.bidi.network import Network from selenium.webdriver.common.bidi.script import Script from selenium.webdriver.common.bidi.session import Session from selenium.webdriver.common.by import By from selenium.webdriver.common.options import ArgOptions from selenium.webdriver.common.options import
17th May 2025, 7:48 AM
6154. Swathy.R