This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
XPS 15是一款好的笔记本,但却有很多不尽如人意的地方,希望dell能改进。几点建议: | |
1、解决屏幕拖影和漏光问题; | |
2、摄像头位置放在屏幕顶部; | |
3、键盘手感加强,改进键程偏短和手感偏软的问题; | |
4、解决单手打开笔记本盖子困难的问题; | |
5、风扇变得更安静,解决风扇呼啸的问题,以及滋滋声响的问题; | |
6、*改进散热模具*。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
XPS 15是一款好的笔记本,但却有很多不尽如人意的地方,希望dell能改进。几点建议: | |
1、解决屏幕拖影和漏光问题; | |
2、摄像头位置放在屏幕顶部; | |
3、键盘手感加强,改进键程偏短和手感偏软的问题; | |
4、解决单手打开笔记本盖子困难的问题; | |
5、风扇变得更安静,解决风扇呼啸的问题,以及滋滋声响的问题; | |
6、*改进散热模具*。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
诺基亚x7宣传自己的手机屏幕是dc调光,结果被不止一个用户发现其屏幕实际上是pwm低频调光。 | |
诺基亚贴吧官方对此事不仅不闻不问,反而采取:禁言、删帖、封号的手段。 | |
而百度贴吧管理也包庇这种行为,对反馈问题的用户进行永久、全吧封禁。 | |
诺基亚早就不是当年的诺基亚,挂羊头卖狗肉,利用这个牌子来欺骗用户。 | |
看到此信息的用户,买手机时多长个心眼。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "fmt" | |
func main(){ | |
fmt.Println("hello") | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
) | |
type DoInter interface { | |
Do() | |
Get() DoInter | |
Set() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Faster solution for: | |
// http://www.boyter.org/2017/03/golang-solution-faster-equivalent-java-solution/ | |
// With threading. | |
// g++ -std=c++11 -Wall -Wextra -O3 -pthread | |
// On my computer (i5-6600K 3.50 GHz 4 cores), takes about ~160 ms after the CPU | |
// has warmed up, or ~80 ms if the CPU is cold (due to Turbo Boost). | |
// How it works: Start by generating a list of losing states -- states where the | |
// game can end in one turn. Generate a new list of states by running the game |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "fmt" | |
func Kmp(sstring string, pstring string, next []int) int { | |
i, j := 0, 0 | |
for i < len(sstring) && j < len(pstring) { | |
if j == -1 || sstring[i] == pstring[j] { | |
i++ | |
j++ |