军医与非门
军医与非门
全部文章
题解
归档
标签
去牛客网
登录
/
注册
军医与非门的博客
全部文章
/ 题解
(共2篇)
题解 | #未排序正数数组中累加和为给定值的最长子数组的长度#
class Main07Test { public int help(int[] arr, int n, int target) { int left = 0, right = 0; int windowSum = arr[0]; int ma...
2021-04-10
0
674
自定义函数实现
public class Solution { public String ReverseSentence(String str) { if (str.length() <= 0 || str == null) return str; int n = s...
2021-04-06
0
533