Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb"Output: 3 Explanation: The answer i ...
分类:
其他好文 时间:
2019-12-30 09:34:59
阅读次数:
59
题目如下: You are given a square board of characters. You can move on the board starting at the bottom right square marked with the character 'S'. You nee ...
分类:
其他好文 时间:
2019-12-29 10:57:18
阅读次数:
68
@Valid: @Valid注解用于校验,所属包为:javax.validation.Valid。 ① 首先需要在实体类的相应字段上添加用于充当校验条件的注解,如:@Min,如下代码(age属于Girl类中的属性): @Min(value = 18,message = "未成年禁止入内") priv ...
分类:
其他好文 时间:
2019-12-27 20:29:30
阅读次数:
124
原题链接在这里:https://leetcode.com/problems/rotated-digits/ 题目: X is a good number if after rotating each digit individually by 180 degrees, we get a valid ...
分类:
其他好文 时间:
2019-12-27 09:49:53
阅读次数:
54
开发中遇见了 vue.runtime.esm.js:1888 DOMException: Failed to execute 'setAttribute' on 'Element': ')' is not a valid attribute name. at baseSetAttr (http:// ...
分类:
其他好文 时间:
2019-12-26 12:58:38
阅读次数:
122
1. 验证 使用序列化器进行反序列化时,需要对数据进行验证后,才能获取验证成功的数据或保存成模型类对象。 在获取反序列化的数据前,必须调用is_valid()方法进行验证,验证成功返回True,否则返回False。 验证失败,可以通过序列化器对象的errors属性获取错误信息,返回字典,包含了字段和 ...
分类:
其他好文 时间:
2019-12-25 23:53:11
阅读次数:
97
3. Longest Substring Without Repeating Characters Medium 7205424Add to ListShare Given a string, find the length of the longest substring without repe ...
分类:
其他好文 时间:
2019-12-25 12:53:25
阅读次数:
75
一、报错 Could not transfer artifact org.apache.maven.plugins:maven-install-plugin:pom:2.4 from/to alimaven (https://maven.aliyun.com/repository/central): ...
分类:
其他好文 时间:
2019-12-24 13:27:26
阅读次数:
90
原因: IDEA的maven地址设置出错,系统找不到指定的maven路径 解决: setting >maven修改正确的maven链接地址。 设置你maven 的地址为你的存放路基就好了 ...
分类:
其他好文 时间:
2019-12-23 20:47:23
阅读次数:
118
题目描述: 方法: class CombinationIterator: def __init__(self, characters: str, combinationLength: int): self.s = characters self.pos = [x for x in range(com ...
分类:
其他好文 时间:
2019-12-23 16:39:02
阅读次数:
81