2019互聯網筆試題編程答案部分

給定有個數組找到數組最長子串 最多能夠改變一個數字 例如 輸入 3個數 7 1 9  輸出 3java 思路 分別用兩個數組記錄以i開始pre和結尾next的遞增子串的長度 找到最大的 若是相差一個的話能夠加上python def handle(): n = input() n = int(n) nums = [int(num) for num in input().split(" ")]
相關文章
相關標籤/搜索