摘要: 〇、可查阅资料 1、文档 英文文档:https://tool.oschina.net/apidocs/apidoc?api=scala-docs-2.9.2 与java:https://docs.scala-lang.org/tutorials/scala-for-java-programmers. 阅读全文
posted @ 2021-11-13 21:30 哥们要飞 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 给定整数数组 nums 和整数 k,请返回数组中第 k 个最大的元素。 请注意,你需要找的是数组排序后的第 k 个最大的元素,而不是第 k 个不同的元素。 方法1:调库 class Solution { public int findKthLargest(int[] nums, int k) { P 阅读全文
posted @ 2021-11-13 20:34 哥们要飞 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 给定一个字符串 s ,请你找出其中不含有重复字符的最长子串的长度。 注意:containsKey class Solution { public int lengthOfLongestSubstring(String s) { Map<Character, Integer> map = new Ha 阅读全文
posted @ 2021-11-13 10:43 哥们要飞 阅读(24) 评论(0) 推荐(0) 编辑