Leetcode.345 Reverse Vowels of a String Write a function that takes a string as input and reverse only the vowels of a string. Example 1: Input: "hell ...
分类:
其他好文 时间:
2020-08-06 09:30:08
阅读次数:
64
SQLite 存储类 每个存储在 SQLite 数据库中的值都具有以下存储类之一: 存储类描述 NULL 值是一个 NULL 值。 INTEGER 值是一个带符号的整数,根据值的大小存储在 1、2、3、4、6 或 8 字节中。 REAL 值是一个浮点值,存储为 8 字节的 IEEE 浮点数字。 TE ...
分类:
数据库 时间:
2020-08-05 10:42:25
阅读次数:
91
原来写的mapper方法: List<InterCityTeam> queryTeamsByParam(@Param("cityId") Integer cityId, @Param("supplierId") Integer supplierId, @Param("teamId")Integer ...
分类:
其他好文 时间:
2020-08-04 14:12:41
阅读次数:
60
最近在处理一个单体应该的时候遇到了并发问题 出现并发问题的伪代码: 1 String redisKey="ORDER_CURRENT_KEY"; 2 String orderCurrentKey = redisUtils.get(redisKey); 3 if (Integer.valueOf(or ...
分类:
其他好文 时间:
2020-08-03 23:32:08
阅读次数:
87
Django中的常用模块导入 from django.shortcuts import render,redirect # 模板渲染 from django.urls import reverse # url反向解析 from django.http import JsonResponse,Http ...
分类:
其他好文 时间:
2020-08-03 19:54:48
阅读次数:
106
https://www.cnblogs.com/yeungchie/ 了解到 61 版本的环境中不提供 dataType 的获取渠道了,现在通过分析 layermap 文件的方式来获取。 code /************************************ * * * Program ...
分类:
其他好文 时间:
2020-08-01 21:30:01
阅读次数:
76
包装类 基本数据类型使用起来非常方便,但是没有操作这些数据方法。 我们可以使用一个类,把基本类型的数据装起来,在类中定义一些方法,这个类就叫做包装类。 基本数据类型对应的包装类位于java.lang包中。 注意int类型所对应的包名称是Integer,char类型对应的包名称是character。 ...
分类:
编程语言 时间:
2020-08-01 21:22:40
阅读次数:
77
题目地址:https://leetcode-cn.com/problems/reverse-integer/ 题目描述 给出一个 32 位的有符号整数,你需要将这个整数中每位上的数字进行反转。 题目示例 示例 1: 输入: 123输出: 321示例 2: 输入: -123输出: -321示例 3: ...
分类:
编程语言 时间:
2020-08-01 12:47:51
阅读次数:
106
一、数值型: 整型: 小数; 定点数; 浮点数; 字符型: 较短的文本:char、varchar 较长的文本:text、blob(较长的二进制数据) 日期型: #一、整型 分类: tinyint、smallint、mediumint、int/integer、bigint 1 2 3 4 8 特点: ...
分类:
编程语言 时间:
2020-07-30 22:04:34
阅读次数:
99
343. 整数拆分 题目来源:力扣(LeetCode)https://leetcode-cn.com/problems/integer-break 题目 给定一个正整数 n,将其拆分为至少两个正整数的和,并使这些整数的乘积最大化。 返回你可以获得的最大乘积。 示例 1: 输入: 2 输出: 1 解释 ...
分类:
编程语言 时间:
2020-07-30 21:51:08
阅读次数:
74