E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Checkio
checkio
-unlucky days
Friday13thorBlackFridayisconsideredasunluckyday.Calculatehowmanyunluckydaysareinthegivenyear.FindthenumberofFriday13thinthegivenyear.Input:Yearasaninteger.Output:NumberofBlackFridaysintheayearasaninte
summerdj
·
2016-03-03 14:00
checkio
-pawn brotherhood
题目意思是给定一个8*8的棋盘,同时给定8个棋子的位置。如果某一个棋子的位置可以由其他棋子一步到达,则认为该棋子安全。判断8个棋子中安全的棋子的个数。如图所示,左边的安全棋子个数为6,右边的位1。思路:遍历给定的集合(set)里面的所有元素,然后转换为list。然后利用ord和chr转换求出该棋子左下和右下的棋子的位置坐标。如果该坐标在原来的集合中,则num+1。最后返回num。代码如下:defs
summerdj
·
2016-03-03 11:00
checkio
-the flat dictionary
尼古拉喜欢对一切看到的东西进行分类。有一次,斯蒂芬送了他一个标签机作为他的生日礼物,机器人把在船上的每个面的标签撕了几个星期。从那时起,他归类在他的实验室的所有试剂,图书馆的书和在桌子上笔记。但后来他得知python字典,并分类所有索菲亚的机器人的可能的配置。现在,这些文件被组织在一个很深的嵌套结构,但索菲亚并不喜欢这样。让我们帮助索菲亚扁平化这些字典。Python字典是一种可以用来方便地存储和处
summerdj
·
2016-03-02 11:00
checkio
-speech module
(str)范例:
checkio
(4)==’four’ch
summerdj
·
2016-03-02 09:00
checkio
-Xs and Os Referee
井字游戏,有时也被称为“进攻和防守”,是一个两人玩家(X和O)轮流标志着3×3的网格的空间的连珠游戏。最先在任意一条直线(水平线,垂直线或对角线)上成功连接三个标记的一方获胜。但我们不去玩这个游戏。你将是这个游戏的裁判。你被赋予游戏的结果,以及你必须判断游戏是平局还是有人胜出,以及谁将会成为最后的赢家。如果X玩家获胜,返回“X”。如果O玩家获胜,返回“O”。如果比赛是平局,返回“D”。游戏的结果是
summerdj
·
2016-02-29 14:00
checkio
-the most wanted letter
给你一个其中包含不同的英文字母和标点符号的文本,你要找到其中出现最多的字母,返回的字母必须是小写形式,当检查最想要的字母时,不区分大小写,所以在你的搜索中“A”==“a”。请确保你不计算标点符号,数字和空格,只计算字母。如果你找到两个或两个以上的具有相同的频率的字母,返回那个先出现在字母表中的字母。例如–“one”包含“o”,“n”,“e”每个字母一次,因此我们选择“e”。输入:用于分析的文本(s
summerdj
·
2015-12-24 16:00
checkio
-moore neighbourhood
Youaregivenastateforarectangularboardgamegridwithchipsinabinarymatrix,where1isacellwithachipand0isanemptycell.Youarealsogiventhecoordinatesforacellintheformofrowandcolumnnumbers(startingfrom0).Youshou
summerdj
·
2015-12-23 16:00
checkio
-house password
斯蒂芬和索菲亚对于一切都使用简单的密码,忘记了安全性。请你帮助尼古拉开发一个密码安全检查模块。如果密码的长度大于或等于10个符号,至少有一个数字,一个大写字母和一个小写字母,该密码将被视为足够强大。密码只包含ASCII拉丁字母或数字。输入:密码(str,unicode)。输出:密码的安全与否,作为布尔值(bool),或者任何可以转换和处理为布尔值的数据类型。你会在结果看到转换后的结果(True或F
summerdj
·
2015-12-18 22:00
checkio
-medium
求中位数。先sort()排序,对2取余数,判断余数是否是0。注意的是在/运算中会自动保存成float,在调用比如data[len(data)/2]时候data里面的数必须是整形的,所以要int()转换一下。defcheckio(data): x=len(data)%2 data.sort() ifx==0: y=len(data)/2 data[0]=(data[int(y-1)]+data[i
summerdj
·
2015-12-18 21:00
checkio
-non unique elements
你将得到一个含有整数(X)的非空列表。在这个任务里,你应该返回在此列表中的非唯一元素的列表。要做到这一点,你需要删除所有独特的元素(这是包含在一个给定的列表只有一次的元素)。解决这个任务时,不能改变列表的顺序。例如:[1,2,3,1,3]1和3是非唯一元素,结果将是[1,3,1,3]。non-unique-elements输入:一个含有整数的列表。输出:一个含有不唯一元素的整数列表。如何使用:这个
summerdj
·
2015-12-17 09:00
Roman numerals
500, 900) -> ('C', 'CD', 'D', 'CM'); (10, 40, 50, 90)->('X', 'XL', 'L', 'XC') 1 def
checkio
·
2015-11-13 07:42
ROM
Xs and Os Referee
Xs and Os Referee 1 def
checkio
(game_result): 2 winner = 'D' 3 4 for row in game_result
·
2015-11-13 07:38
OS
Challenge
Checkio
(python)—初尝python练习网站
最近在找点python语言练习的网站,发现这个网站不错 http://www.
checkio
.org/ 页面设计的也比较漂亮,比较适合学习python的语法知识。
·
2015-11-07 13:01
python
体验游戏编程网站
终于找到了两个不错的网站
checkio
和pythonchallenge。今天先看看了看
checkio
确实很适合练习语法。 加载的速度有点慢,进去点两下就可以开始敲题了,题目还有提示 第一个题
·
2015-11-07 10:17
编程
好久没有上
checkio
,突然发现pycharm集成了,小小惊喜。
翻着pycharm的官网,,突然看到来自官网blog的介绍:http://blog.jetbrains.com/pycharm/2015/10/announcing-pycharm-edu-2-0-2-
checkio
-integration
aa443399
·
2015-10-26 15:23
python
pycharm
checkIO
好久没有上
checkio
,突然发现pycharm集成了,小小惊喜。
翻着pycharm的官网,,突然看到来自官网blog的介绍:http://blog.jetbrains.com/pycharm/2015/10/announcing-pycharm-edu-2-0-2-
checkio
-integration
aa443399
·
2015-10-26 15:23
python
pycharm
checkIO
转置矩阵
3], [4, 9, 6], [7, 8, 1]]正确结果:[[1, 8, 7, 4, 7], [4, 2, 8, 9, 8], [3, 6, 3, 6, 1]]代码1(普通青年版):def
checkio
yestreenstars
·
2015-06-18 21:22
转置矩阵
non-unique-elements
(data): 2alist=[] 3foriindata: 4if(data.count(i)>1): 5alist.append(i) 6 7returnalist 推荐的解决方式:
checkio
小名辉辉
·
2015-04-09 17:00
checkio
-- Open Labyrinth python BFS的使用
StephenandSofiawanderoffforamoment,takingabreakfromthepackingandpilingandfixingofthingsontheship.ByaccidenttheywanderbyanOpenLabyrinththeyhadneverseenbeforeontheirhomeisland.“Look,there’splentyofadven
·
2014-06-11 19:00
checkio
-- Find Sequence
FindSequenceYouaregivenamatrixofNxN(4≤N≤10).Youshouldcheckifthereisasequenceof4ormorematchingdigits.Thesequencemaybepositionedhorizontally,verticallyordiagonally(NW-SEorNE-SWdiagonals).Input:Alistof
·
2014-06-11 19:00
checkio
-- Three Points Circle
用三点确定一个圆importmathdefcheckio(s): s=s.replace("(","") s=s.replace(",","") s=s.replace(")","") l=s.split('') n=[] foriinl: iflen(i)!=0: n.append(int(i)) a=2*(n[2]-n[0]) b=2*(n[3]-n[1])
·
2014-06-11 19:00
Python
checkio
Transposed Matrix map与zip的使用
题目要求输入矩阵输出矩阵的转置简单粗暴
checkio
=lambdamatrix:map(list,zip(*matrix))
checkio
([[1,2,3], [4,5,6],
·
2014-06-11 19:00
Checkio
- What does the cow say? 题目和答案
Whatdoesthecowsay?Letscowsay!Ourcowisyoungandcanonlysaysomeofthewordsweteachit.Notonlydoesittalk,butthiscowcanturnintothefamousTux(wiki/Cowsay)ifweaskitnicely.Youaregivensometextandyourfunctionshouldf
·
2014-05-30 10:00
checkio
的一些题:Speech Module,Feed Pigeons,Roman numerals,Golden Pyramid,The Most Numbers,Digits Multipl
SpeechModuledefcheckio(number): s="" ifnumber/100>0: s+=FIRST_TEN[number/100-1] s+="" s+=HUNDRED number=number%100 ifnumber>0: s+="" ifnumber>0: ifnumber0: ifnumber-p>0:
·
2014-05-24 21:00
checkio
-- Striped Words
Ourrobotsarealwaysworkingtoimprovetheirlinguisticskills.Forthismission,theyresearchthelatinalphabetanditsapplications.Thealphabetcontainsbothvowelandconsonantletters(yes,wedividetheletters).Vowels--AE
·
2014-05-24 21:00
checkio
的一些题
XsandOsReferee:defcheckio(l): foriinl: ifi[0]==i[1]andi[0]==i[2]andi[0]!='.': returni[0] foriinrange(3): ifl[0][i]==l[1][i]andl[0][i]==l[2][i]andl[0][i]!='.': returnl[0][i] ifl[0][0
·
2014-05-20 18:00
checkio
(数独)
#Returnthesolutionofthesudoku. globalgetans,visitx,visity defcheck(x,y,grid): x=x/3*3 y=y/3*3 use=set() foriinrange(3): forjinrange(3): ifgrid[x+i][y+j]==0: returnTrue use.add(grid[x+i][y+j]) iflen(u
Wiking__acm
·
2014-03-25 15:00
checkio
(Digging a canal)
Therobotsaretryingtocolonizeanewisland.Therearemanyriversonthisislandanditwouldbegoodideaforthemtouseshipsdesignedforwater,ratherthantheirspaceships.Someoftheterritoriesdonothaveariverfortransportatio
Wiking__acm
·
2014-03-13 16:00
checkio
(water jars)
Youstandbytheedgeofalakewithtwoemptyjars.Younoticethatbothofthejarshaveavolume.Youcanfilleachjarwithwaterfromthelake,pourwaterfromonejartootherorpourwaterbackintolake.Youshouldmeasurethevolumeofwateri
Wiking__acm
·
2014-03-12 21:00
checkio
(URL Normalization)
URLnormalizationistheprocessbywhichURLsaremodifiedandstandardizedinaconsistentmanner.ThegoalofthenormalizationprocessistotransformaURLintoanormalizedorcanonicalURLsoitispossibletodetermineiftwosyntact
Wiking__acm
·
2014-03-11 17:00
checkio
(Counting tiles)
NicolaneedssomehelpbuildingacircularlandingzoneusingtheicesquaretilesfortheirnewIceBase.Beforeheconvertstheareatoaconstructionplace,Nikolaneedstofigureouthowmanysquaretileshewillneed.Eachsquaretilehas
Wiking__acm
·
2014-03-10 23:00
checkio
(How much gold)
OurFavoriteTriohasfoundamysteriousmetalbar.Thisbarappearstobemadeofvariousmetalincludinggold,iron,copperandtin.Thebardoesnotcontainanyothermetalexceptthese.Wedonotknowthequantityofeachmetalinthebar,bu
Wiking__acm
·
2014-03-10 12:00
checkio
(Numbers Factory)
Youaregivenatwoormoredigitsnumber N.Forthismission,youshouldfindthesmallestpositivenumberof X,suchthattheproductofitsdigitsisequaltoN.IfXdoesnotexist,thenreturn0.Let'sexaminetheexample.N=20.Wecanfacto
Wiking__acm
·
2014-03-09 11:00
checkio
(Brackets)
Youaregivenanexpressionwithnumbers,bracketsandoperators.Forthistaskonlythebracketsmatter.Bracketscomeinthreeflavors:"{}""()"or"[]".Bracketsareusedtodeterminescopeortorestrictsomeexpression.Ifabracketi
Wiking__acm
·
2014-03-09 10:00
checkio
(Determine the order)
TheRobotshavefoundanencryptedmessage.Wecannotdecryptitatthemoment,butwecantakethefirststepstowarddoingso.Youhaveasetof"words"allinlowercase,eachwordcontainssymbolsin"alphabeticalorder"(it'snotyourtypi
Wiking__acm
·
2014-03-06 20:00
checkio
(tic-tac-toe)
Tic-Tac-Toe,sometimesalsoknownasXsandOs,isagamefortwoplayers(XandO)whotaketurnsmarkingthespacesina3×3grid.Theplayerwhosucceedsinplacingthreerespectivemarksinahorizontal,vertical,ordiagonalrows(NW-SEan
Wiking__acm
·
2014-03-04 21:00
checkio
的日子(3)
from itertools import combinationsdef
checkio
(batteries): min_diff = max(batteries) for combination_length
fengyunsen
·
2013-08-30 16:19
python
python&openerp
checkio
的日子(3)
from itertools import combinations def
checkio
(batteries): min_diff = max(batteries) for combination_length
fengyunsen
·
2013-08-30 16:19
python
checkio
的日子(2)
def
checkio
(data): data[0] += data[1] data[2] -= data[3] if int(data[0]) int(data[2]):
fengyunsen
·
2013-08-30 15:47
purchase
Spaceship
checkio
的日子(2)
def
checkio
(data): data[0] += data[1] data[2] -= data[3] if int(data[0]) int(data[2]):
fengyunsen
·
2013-08-30 15:47
Spaceship
Purchase
python&openerp
checkio
的日子
最近在学习python,也看过了几本书,偶然在群里面有人介绍
checkio
这个东东,就自己去玩了一下,感受还是不错的,以下记录一下自己做的几道题目,让日后自己回看过来,才会发现现在写的东西是多么垃圾,那时候也证明我已经进步了很多了
fengyunsen
·
2013-08-30 15:23
python
Module
Speed
checkio
的日子
最近在学习python,也看过了几本书,偶然在群里面有人介绍
checkio
这个东东,就自己去玩了一下,感受还是不错的,以下记录一下自己做的几道题目,让日后自己回看过来,才会发现现在写的东西是多么垃圾,那时候也证明我已经进步了很多了
fengyunsen
·
2013-08-30 15:23
python
Speed
Module
python&openerp
Python 正则表达式高级应用举例
首先,写这篇文章的起因,是这两天玩了一个网站 http://www.
checkio
.org 用Python做题、出题,交流,很有意思也很有挑战。
mayao11
·
2012-04-04 21:00
正则表达式
python
String
测试
2010
Numbers
上一页
1
2
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他