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
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
题目地址:https://leetcode-cn.com/problems/reverse-integer/ 题目描述 给出一个 32 位的有符号整数,你需要将这个整数中每位上的数字进行反转。 题目示例 示例 1: 输入: 123输出: 321示例 2: 输入: -123输出: -321示例 3: ...
分类:
编程语言 时间:
2020-08-01 12:47:51
阅读次数:
106
Collections工具类 Collections是一个操作Set、List和Map等集合的工具类(类似于Arrays操作数组的工具类) 提供了一系列的静态方法(static) 排序操作的相关方法 reverse(List) 反转List中元素的顺序 List list = new ArrayLi ...
分类:
其他好文 时间:
2020-07-30 01:24:21
阅读次数:
67
/* 1、数组的练习 用一个数组存储本组学员的成绩,并遍历显示 (1)其中学员的人数从键盘输入 (2)学员的成绩从键盘输入 */ class Test08_Exer4{ public static void main(String[] args){ /* 步骤: 1、先确定人数,从键盘输入 2、声明 ...
分类:
编程语言 时间:
2020-07-29 17:40:02
阅读次数:
65
Given the root of a binary tree and an integer distance. A pair of two different leaf nodes of a binary tree is said to be good if the length of the s ...
分类:
其他好文 时间:
2020-07-27 15:58:17
阅读次数:
93
question: A tree is a well-known data structure that is either empty (null, void, nothing) or is a set of one or more nodes connected by directed edge ...
分类:
其他好文 时间:
2020-07-26 23:09:33
阅读次数:
68
微信小程序中的rich-text可以接收转移html标签 字体的样式处理 可以通过 给rich-text添加类名设置字体样式 图片的样式(自适应) 获取的html标签字符串.replace(/<img/g, '<img style="max-width:100%;height:auto;displa ...
分类:
微信 时间:
2020-07-26 15:42:04
阅读次数:
185