Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex ...
                            
                            
                                分类:
其他好文   时间:
2020-04-21 18:36:52   
                                阅读次数:
67
                             
                    
                        
                            
                            
                                    /** * The number of times this list has been <i>structurally modified</i>. * Structural modifications are those that change the size of the * list, or ...
                            
                            
                                分类:
编程语言   时间:
2020-04-18 18:41:57   
                                阅读次数:
99
                             
                    
                        
                            
                            
                                    题目 The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed fo ...
                            
                            
                                分类:
其他好文   时间:
2020-04-16 13:20:15   
                                阅读次数:
61
                             
                    
                        
                            
                            
                                用朴素贝叶斯做一个分类问题,数据就用sklearn新闻数据集。 但是下载巨慢,没耐心等。接下去就是一波操作,上篮成功。 因为版本之间可能存在差异,所以就不发数据集的安装包了。 1)当你在运行程序的时候,控制台是这么输出的 Downloading 20news dataset. This may ta ...
                            
                            
                                分类:
其他好文   时间:
2020-04-16 13:09:15   
                                阅读次数:
167
                             
                    
                        
                            
                            
                                    PuTTY Trick 1: Delete All PuTTY Sessions Together When you are swapping an old computer with a new computer, you may end-up transferring all PuTTY ses ...
                            
                            
                                分类:
其他好文   时间:
2020-04-16 01:01:51   
                                阅读次数:
291
                             
                    
                        
                            
                            
                                    题目 Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. 给定一个字符串 s,找到 s 中最长的回文子串。你可以假设 s ...
                            
                            
                                分类:
其他好文   时间:
2020-04-15 18:30:58   
                                阅读次数:
59
                             
                    
                        
                            
                            
                                    背景 在jdk1.6以前synchronized的java内置锁不存在 偏向锁->轻量级锁->重量级锁 的锁膨胀机制,锁膨胀机制是1.6之后为了优化java线程同步性能而实现的。而1.6之前都是基于monitor机制的重量级锁。因为java内部对锁实现的封装,就算现在我们也只需要了解重量级锁就可以了 ...
                            
                            
                                分类:
编程语言   时间:
2020-04-15 18:07:04   
                                阅读次数:
144
                             
                    
                        
                            
                            
                                错误信息提示 # mount /dev/sdb1 /mnt/usb Mount is denied because the NTFS volume is already exclusively opened. The volume may be already mounted, or another ...
                            
                            
                                分类:
系统相关   时间:
2020-04-15 15:18:17   
                                阅读次数:
192
                             
                    
                        
                            
                            
                                    Chapter 2: Class Templates 第2章 类模板 Similar to functions, classes can also be parameterized with one or more types. Container classes, which are used t ...
                            
                            
                                分类:
其他好文   时间:
2020-04-14 12:23:47   
                                阅读次数:
67
                             
                    
                        
                            
                            
                                # hello3.pyimport hello4person = {'Alice': 13, 'Bob': 35, 'May': 56, 'Lin': 29}body_name = ['head', 'body', 'hand', 'leg', 'foot']# 找出想要的字符串def number ...
                            
                            
                                分类:
其他好文   时间:
2020-04-13 19:54:56   
                                阅读次数:
68