搜索结果
查询Tags标签: idx1,共有 3条记录-
寻找两个正序数组的中位数【php版】
<?php class Solution {/*** @param Integer[] $nums1* @param Integer[] $nums2* @return Float*/function findMedianSortedArrays($nums1, $nums2) {$l1 = count($nums1);$l2 = count($nums2);$l = $l1 + $l2;if ($l % 2 == 1) {$ans = $this->getKthElm($nums1…
2021/8/2 17:06:16 人评论 次浏览 -
寻找两个正序数组的中位数【php版】
<?php class Solution {/*** @param Integer[] $nums1* @param Integer[] $nums2* @return Float*/function findMedianSortedArrays($nums1, $nums2) {$l1 = count($nums1);$l2 = count($nums2);$l = $l1 + $l2;if ($l % 2 == 1) {$ans = $this->getKthElm($nums1…
2021/8/2 17:06:16 人评论 次浏览 -
邮件取数
public class test {/*** @param args*/public static void main(String[] args) {// TODO Auto-generated method stubString s = "hellokitty";System.out.println(s.substring(5)); System.out.println(s.substring(5,7));//有头无尾 System.o…
2021/6/28 23:22:49 人评论 次浏览