66_Plus-One

66_Plus-One

Description

Given a non-empty array of digits representing a non-negative integer, plus one to the integer.

The digits are stored such that the most significant digit is at the head of the list, and each element in the array contain a single digit.

You may assume the integer does not contain any leading zero, except the number 0 itself.

Example 1:

Input: [1,2,3]
Output: [1,2,4]
Explanation: The array represents the integer 123.

Example 2:

Input: [4,3,2,1]
Output: [4,3,2,2]
Explanation: The array represents the integer 4321.

Solution

Java solution

class Solution {
    public int[] plusOne(int[] digits) {
        int n = digits.length;
        for (int i=n-1; i>=0; i--) {
            if (digits[i] < 9) {
                digits[i]++;
                return digits;
            }
            digits[i] = 0;
        }
        
        int[] newNum = new int[n+1];
        newNum[0] = 1;
        return newNum;
    }
}

Runtime: 0 ms

Python solution 1

class Solution:
    def plusOne(self, digits):
        """
        :type digits: List[int]
        :rtype: List[int]
        """
        i = len(digits) - 1
        while digits[i] == 9 and i>=0:
            digits[i] = 0
            i -= 1
        
        if i < 0:
            return [1] + digits
        else:
            digits[i] += 1
            return digits

Runtime: 44 ms

Python solution 2

class Solution:
    def plusOne(self, digits):
        """
        :type digits: List[int]
        :rtype: List[int]
        """
        num = 0
        for i in range(len(digits)):
            num += digits[i] * pow(10, len(digits)-1-i)
        return [int(n) for n in str(num+1)]

Runtime: 40 ms

Python solution 3

class Solution:
    def plusOne(self, digits):
        """
        :type digits: List[int]
        :rtype: List[int]
        """
        return [int(n) for n in str(int(''.join(map(str, digits))) + 1)]

Runtime: 40 ms

转载于:https://www.cnblogs.com/xugenpeng/p/9192483.html

def get_stock_minute_price_in_one_day_by_sina_pyautogui_new(str_date,tscode): newdf={} x = 81 y = 635 while True: try: pyautogui.click(pyautogui.center(pyautogui.locateOnScreen(r"C:\PycharmProjects\my_backtest\img\browser.png", confidence=0.9)),duration=0.25) waiting_time=time.time() while True: if(pyautogui.locateOnScreen(r"C:\PycharmProjects\my_backtest\img\browser_plus.png", confidence=0.8)!=None): pyautogui.click(pyautogui.center( pyautogui.locateOnScreen(r"C:\PycharmProjects\my_backtest\img\browser_plus.png", confidence=0.8)), duration=0.25) break if(time.time()-waiting_time>10): raise BaseException time.sleep(1) pyautogui.typewrite("https://finance.sina.com.cn/h5charts/tchart.html?symbol="+tscode+"&date="+str_date+"&rangeselector=true&indicator=tvol",interval=0.05) time.sleep(1) pyautogui.press("enter") time.sleep(2) # if(pyautogui.locateOnScreen(r"C:\PycharmProjects\my_backtest\img\void_line.png", confidence=0.8)==None): # raise BaseException pyautogui.moveTo(x, y, duration=0.25) while True: x=x+7 pyautogui.moveTo(x,y) img1 = pyautogui.screenshot(region=(2279 - 24,237- 66, 214, 154)) img2 = pyautogui.screenshot(region=(117 - 24, 238 - 66, 214, 154)) pool.submit(gsmpiodbspn_thread, newdf, img1,img2) if (("15:00" in newdf) == True or x >= 2475): break pyautogui.click(pyautogui.center( pyautogui.locateOnScreen(r"C:\PycharmProjects\my_backtest\img\close_browser.png", confidence=0.8)), duration=0.25) if(("15:00" in newdf)==True or x>=2475): break except BaseException as e: print(e) pyautogui.click(pyautogui.center( pyautogui.locateOnScreen(r"C:\PycharmProjects\my_backtest\img\close_browser.png", confidence=0.8)), duration=0.25) return newdf。 请问上面这段个函数,在不改变原来功能的情况下,如何提高运行速度
06-02
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值