摘要: leetcode_打卡08 题目:334. 递增的三元子序列 思路:分成左边L和右边R,只要找到该数左边比它小的,右边比他大的即可 代码: class Solution { public boolean increasingTriplet(int[] nums) { int n=nums.lengt 阅读全文
posted @ 2023-04-19 22:44 ZLey 阅读(12) 评论(0) 推荐(0) 编辑