去年 kaggle 比赛的代码时 https://www.kaggle.com/artgor/quick-and-dirty-regression ,出现如下报错,全网都找不到答案。 特此记下。 LightGBMError: Do not support special JSON character ...
分类:
Web程序 时间:
2019-12-05 22:12:26
阅读次数:
976
443. String Compression Easy Easy Easy Given an array of characters, compress it in-place. The length after compression must always be smaller than or ...
分类:
其他好文 时间:
2019-11-29 12:38:39
阅读次数:
63
php addcslashes()函数 语法 作用:返回在指定字符前添加反斜杠的字符串 语法:addcslashes(string,characters) 参数: 参数 描述 string 必须,规定要转义的字符串。 characters 必须,规定要转义的字符或字符范围。 说明:返回已转义的字符串 ...
分类:
Web程序 时间:
2019-11-18 14:27:00
阅读次数:
63
Given two binary strings, return their sum (also a binary string). The input strings are both non empty and contains only characters 1 or 0. Example 1 ...
分类:
其他好文 时间:
2019-11-16 00:06:10
阅读次数:
55
无重复字符的最长字串 leetcode地址:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/ 题目描述: 给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。 示例: 输入: ...
分类:
其他好文 时间:
2019-11-10 15:37:29
阅读次数:
76
在处理中文数据,经常加入下面的代码: 设置python默认字节流编/解码器按照utf8解码方式,把字节流编/解码为unicode; 具体来说,所起到的作用,可以用下面两个错误来解释: UnicodeEncodeError: 'ascii' codec can't encode characters ...
分类:
编程语言 时间:
2019-11-09 21:38:36
阅读次数:
126
344. Reverse String Easy Easy Easy Write a function that reverses a string. The input string is given as an array of characters char[]. Do not allocat ...
分类:
其他好文 时间:
2019-11-09 10:12:29
阅读次数:
111
如果收到的HTTP请求参数(URL中的GET请求)中有一个字符串,是中文,比如“10%是黄段子”,服务器段使用URLDecoder.decode就会出现此异常。URL只能使用英文字母、阿拉伯数字和某些标点符号,不能使用其他文字和符号。如果内容中存在中文,必须要进行编解码。“10%是黄段子”转码过后是 ...
分类:
编程语言 时间:
2019-11-08 12:00:00
阅读次数:
112
1.Given a Huffman tree for N (≥2) characters, all with different weights. The weight of any non leaf node must be no less than the weight of any node ...
分类:
编程语言 时间:
2019-11-07 15:06:52
阅读次数:
143
场景:在没有通过npm init初始化目录的情况下,直接通过cnpm命令安装模块,在卸载模块时报错 报错:name cannot start with an underscore; name can only contain URL-friendly characters 原因分析:通过cnpm命令 ...
分类:
其他好文 时间:
2019-11-06 01:11:29
阅读次数:
265