一、前言 二、题695 Max Area of Island Given a non-empty 2D array grid of 0's and 1's, an island is a group of 1's (representing land) connected 4-directional ...
分类:
编程语言 时间:
2017-11-14 17:17:05
阅读次数:
411
Page 1Published as a conference paper at ICLR 2017AS IMPLE BUT T OUGH - TO -B EAT B ASELINE FOR S EN -TENCE E MBEDDINGSSanjeev Arora, Yingyu Liang, Te ...
分类:
其他好文 时间:
2017-11-11 16:45:56
阅读次数:
368
Python isalnum()方法 #检测字符串是否由字母和数字组成 如果 string 至少有一个字符并且所有字符都是字母或数字则返回 True,否则返回 False >>> 'hello'.isalnum() True >>> 'hello123'.isalnum() True >>> 'he ...
分类:
编程语言 时间:
2017-11-09 17:18:32
阅读次数:
194
嗯,学习其它语言没这样全练过,嘻嘻 //test.py 1 # -*- coding: UTF-8 -*- 2 3 str = "i am worker" 4 print str.capitalize() 5 print str.center(20) 6 print str.count(' ') 7 ...
分类:
编程语言 时间:
2017-11-03 18:48:47
阅读次数:
245
PL/SQL Developer import and export database method and illustrate HOW WELL DO YOU KNOW THE APPLE UNIVERSE? In 2015, Apple became the first company wor ...
分类:
数据库 时间:
2017-11-03 00:13:08
阅读次数:
202
s为字符串s.isalnum() 所有字符都是数字或者字母s.isalpha() 所有字符都是字母s.isdigit() 所有字符都是数字s.islower() 所有字符都是小写s.isupper() 所有字符都是大写s.istitle() 所有单词都是首字母大写,像标题s.isspace() 所有 ...
分类:
其他好文 时间:
2017-10-31 12:38:38
阅读次数:
225
#Author:Mini#!/usr/bin/env pythonimport urllib.requestimport urllib.parsefrom sina.miniweibo import APIClientdef weibo(): APP_KEY="2911889655" APP_SEC ...
分类:
编程语言 时间:
2017-10-30 18:19:12
阅读次数:
231
问题一: 第一个问题是对IDE过于依赖导致的bug,由于我经常使用Java和c++,之间的一些区别有时候就很容易忽略: 在Java中,这样的判断eclipse是会报错的,因为a=b是赋值语句,所以返回值是对左值的引用,返回int,而java的判断语句括号中必须是boolean,不然会报错。 而在c+ ...
分类:
其他好文 时间:
2017-10-25 00:50:54
阅读次数:
200
unity5打包机制下,一种资源打ab和资源管理的方案。1.打ab: 1.设置平台 2.清楚所有资源的assetbundlename: string[] abNameArr = AssetDatabase.GetAllAssetBundleNames(); AssetDatabase.RemoveA ...
分类:
编程语言 时间:
2017-10-24 21:06:07
阅读次数:
256
USACO 2006 November Gold Corn Fields 题目描述: Farmer John has purchased a lush new rectangular pasture composed of M by N square parcels. He wants to gro ...
分类:
其他好文 时间:
2017-10-21 16:29:16
阅读次数:
181