Level 8kyu :Convert number to reversed array of digits 将数字转换为反转的数字数组 给定一个随机的非负数,您必须以相反的顺序返回该数字在数组中的数字。 例:348597 => [7,9,5,8,4,3] 主要方法: ArrayListy: get ...
分类:
其他好文 时间:
2020-05-24 00:51:47
阅读次数:
56
114. 不同的路径 中文English 有一个机器人的位于一个 m × n 个网格左上角。 机器人每一时刻只能向下或者向右移动一步。机器人试图达到网格的右下角。 问有多少条不同的路径? 样例 Example 1: Input: n = 1, m = 3 Output: 1 Explanation: ...
分类:
其他好文 时间:
2020-05-24 00:34:31
阅读次数:
60
LeetCode 200:Number of Islands 题意描述 给定二维地图“ 1”(土地)和“ 0”(水),计算岛屿的数量。一个岛屿被水包围,是通过水平或垂直连接相邻的陆地而形成的。您可以假设网格的所有四个边缘都被水包围。 测试用例 Example 1: Example 2: 解题思路 一 ...
分类:
其他好文 时间:
2020-05-24 00:24:56
阅读次数:
45
问题: 给定一个数组,其为循环数组(最后一个元素的下一个元素为第一个元素)。 求连续子数组和的最大值。 Example 1: Input: [1,-2,3,-2] Output: 3 Explanation: Subarray [3] has maximum sum 3 Example 2: Inp ...
分类:
其他好文 时间:
2020-05-23 18:26:27
阅读次数:
54
一. $.ajax()方法概述 作用:发送Ajax请求 1 $.ajax({ 2 type: 'get', //请求方式 3 url: 'http://www.example.com',//请求地址 4 data: { name: 'zhangsan', age: '20' },//或{data:' ...
分类:
Web程序 时间:
2020-05-23 18:07:17
阅读次数:
55
前面一章节我们介绍了 Ruby DBI 的使用。这章节我们技术 Ruby 连接 Mysql 更高效的驱动 mysql2,目前也推荐使用这种方式连接 MySql。 安装 mysql2 驱动: gem install mysql2 你需要使用 –with-mysql-config 配置 mysql_co ...
分类:
数据库 时间:
2020-05-23 18:04:32
阅读次数:
65
目录结构: github 项目地址:https://github.com/liangzai90/MyExecProject2020/tree/master/makefile_project/ASimpleMakefileProject #可执行文件的名称 NAME=Demo1 #需要包含的头文件目录 ...
分类:
其他好文 时间:
2020-05-23 16:37:06
阅读次数:
58
问题: 给定数组,切分为left和right,使得left的所有元素<=right的所有元素,返回left的长度 Example 1: Input: [5,0,3,8,6] Output: 3 Explanation: left = [5,0,3], right = [8,6] Example 2: ...
分类:
其他好文 时间:
2020-05-23 13:20:11
阅读次数:
49
[抄题]: Invert a binary tree. Example: Input: 4 / \ 2 7 / \ / \ 1 3 6 9 Output: 4 / \ 7 2 / \ / \ 9 6 3 1 [暴力解法]: 时间分析: 空间分析: [优化后]: 时间分析: 空间分析: [奇葩输出条件 ...
分类:
其他好文 时间:
2020-05-23 10:03:40
阅读次数:
49
使用Feign组件进行远程服务的调用的时候,报错信息如下 Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.example.eurekaclie ...
分类:
编程语言 时间:
2020-05-23 10:00:14
阅读次数:
49