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
CodeWars
Codewars
(Python):Some Egyptian fractions 一些埃及分数
这个是
Codewars
网站的一个题目,OJ地址题目大意这篇题目的意思就是给你一个字符串n,字符串的形式呢可能是分数,也可能是小数,然后呢,让你把这些数字分成一些埃及分数之和。
Zhanghp947
·
2020-06-29 13:50
codewars
利用SSRF漏洞滥用AWS元数据服务
在我这样做的时候,我发现Qualified开发的代码执行引擎中有几个有趣的漏洞,这些漏洞已经被广泛使用,包括
CodeWars
或InterviewCake等网站。
weixin_34162228
·
2020-06-28 12:56
Build Tower -- 6 Kyu
原题https://www.
codewars
.com/kata/576757b1df89ecf5bd00073b/train/cpp题目BuildTowerbythefollowinggivenargument
jdzhangxin
·
2020-06-28 04:29
求数组中最大乘积
https://www.
codewars
.com/kata/maximum-product/train/java模仿大神的:publicclassMaxProduct{publicintadjacentElementsProduct
weixin_30587927
·
2020-06-27 21:33
codewars
php部分--返回一个字符串中最中间的字母
返回一个字符串中最中间的字母,两种情况:(1)字母长度为偶数时,返回中间两个,例如“abcd”==>>"bc"(2)当字母长度为基数时,只返回最中间的一个,例如“abc”==>>“b”。functiongetMiddle($text){$array=str_split($text,1);//通过str_split(str,length)指定长度,返回数组if(count($array)%2===0
MakingChoice
·
2020-06-27 19:37
[8kyu]Welcome!
该算法题来自于
codewars
【语言:javascript】,翻译如有误差,敬请谅解~场景您所在公司的广告已告知营销部门,公司的网站在斯堪的纳维亚和周边国家拥有大量访客。
君肄塵
·
2020-06-27 10:20
Return location -- 8 Kyu
原题https://www.
codewars
.com/kata/return-location题目YouaregivenaclassnamedPersonwithamethodnamedlocation
jdzhangxin
·
2020-06-26 11:27
一行代码解决判断字符串中是否有重复字母?
今天偶然接触到了一个编程网站,
codewars
。全英文的,花了十分钟总算搞懂了第一道题是让我干嘛的。
一个新手^_^
·
2020-06-25 02:04
随笔
不穷举能做到么? —— Code Kata 之 下一个更大数
这是在
codewars
上看到的一道题编写一个函数,接受一个正整数作为输入,然后输出由相同数字组成的下一个更大的数:next_bigger(12)==21next_bigger(513)==531next_bigger
武可
·
2020-06-24 14:43
Sum of numbers from 0 to N -- 7 Kyu
原题https://www.
codewars
.com/kata/56e9e4f516bcaa8d4f001763/train/cpp题目Description:Wewanttogenerateafunctionthatcomputestheseriesstartingfrom0andendinguntilthegivennumberfollowingthesequence
jdzhangxin
·
2020-06-22 22:25
CodeWars
打卡(08)
Details:#Reverseorrotate?Theinputisastringstrofdigits.Cutthestringintochunks(achunkhereisasubstringoftheinitialstring)ofsizesz(ignorethelastchunkifitssizeislessthansz).Ifachunkrepresentsanintegersucha
影醉阏轩窗
·
2020-06-21 16:32
每日kata~03-[github搬家]
时隔多年终于写出来一个递归,小开心0v0题目:https://www.
codewars
.com/kata/541c8630095125aba6000c00Inthiskata,youmustcreateadigitalrootfunction.Adigitalrootistherecursivesumofallthedigitsinanumber.Givenn
Lacia
·
2020-05-20 18:23
Reverse or rotate? -- 6Kyu
原题https://www.
codewars
.com/kata/reverse-or-rotate/train/cpp题目Theinputisastringstrofdigits.Cutthestringintochunks
jdzhangxin
·
2020-04-13 21:36
CodeWars
(12-LV4)
Details:Inthiskatayouhavetocreateallpermutationsofaninputstringandremoveduplicates,ifpresent.Thismeans,youhavetoshufflealllettersfromtheinputinallpossibleorders.example:permutations('a');#['a']permuta
影醉阏轩窗
·
2020-04-13 10:33
CodeWars
-Find the unique number
本着学好英语、熟练Python和写出更加Pythonic的代码的三重想法,决定记录下在
CodeWars
上解题的思路和题目的最简代码,来比较和分析自己的不足。
蜡笔不好吃
·
2020-04-13 02:28
[7kyu]Battle of the characters (Easy)
该算法题来自于
codewars
【语言:javascript】,翻译如有误差,敬请谅解~任务创建函数接收2个变量,比较并返回一个更大的变量。
君肄塵
·
2020-04-10 19:45
Consecutive strings -- 6 Kyu
原题https://www.
codewars
.com/kata/consecutive-strings/train/cpp题目Youaregivenanarraystrarrofstringsandanintegerk.Yourtaskistoreturnthefirstlongeststringconsistingofkconsecutivestringstakeninthearray.Exam
jdzhangxin
·
2020-04-10 09:01
近期
Codewars
JS算法总结
前一段时间在
codewars
上做了一些Javascript的算法,主要是和数组方法和正则表达式有关,写篇博客来记录一下,否则这里面包含的知识真的忘得太快了。。。
莲子百合汤
·
2020-04-09 13:55
CodeWars
(Day2)正则表达式
Day2slicestr.slice(-3);//截取后三个字符,str不变eg:Writeafunctionmaskify,whichchangesallbutthelastfourcharactersinto'#'.maskify("4556364607935616")=="############5616"程序:functionmaskify(cc){returncc.slice(0,-4)
Bookish倩宝
·
2020-04-08 14:11
卢小七的刷题笔记(js)
题目来源:
Codewars
题目:Ismyfriendcheating?
卢小七
·
2020-04-04 09:07
codewars
(python)练习笔记十八:找出第N个喝可乐的人
codewars
(python)练习笔记十八:找出第N个和可乐的人题目Sheldon,Leonard,Penny,RajeshandHowardareinthequeuefora"DoubleCola"drinkvendingmachine
曹波波
·
2020-04-03 02:15
【
codewars
】Are they the "same"
原贴地址https://www.
codewars
.com/kata/550498447451fbbd7600041c/train/java简介如下:Giventwoarraysaandbwriteafunctioncomp
王简书2009
·
2020-04-02 03:18
Is this a triangle?-- 7 Kyu
原题http://www.
codewars
.com/kata/is-this-a-triangle/train/cpp题目Isthisatriangle?
jdzhangxin
·
2020-03-30 20:22
Codewars
之 Unique In Order 解法
Implementthefunctionunique_in_orderwhichtakesasargumentasequenceandreturnsalistofitemswithoutanyelementswiththesamevaluenexttoeachotherandpreservingtheoriginalorderofelements.Forexample:unique_in_orde
伟健Wiken
·
2020-03-30 08:14
Codewars
刷题升级
Kumite
Codewars
是个的一个通过实战训练来达到提高编程开发技能的网站。通过不同级别的题目,提高编程能力,磨砺编程技术。级别完全参照武术级别设定,从8级到1级,再从1段到8段。
jdzhangxin
·
2020-03-27 08:33
Codewars
编程套路练习:验证IPv4地址
问题描述设计一个算法,判断点分十进制格式的IPv4地址是否符合协议要求。函数的输入限制为一个字符串。合理的输入:1.2.3.4123.45.67.89不合理的输入:1.2.31.2.3.4.5123.456.78.90123.045.067.089问题标签算法、正则表达式、高级语言特性、基础知识、字符串、声明式编程(DeclarativeProgramming)函数命名defis_valid_IP
EarlGrey
·
2020-03-24 18:54
codewars
(python)练习笔记十四:找出最大的单词
codewars
(python)练习笔记十四:找出最大的单词题目Givenastringofwords,youneedtofindthehighestscoringword.Eachletterofawordscorespointsaccordingtoit'spositioninthealphabet
曹波波
·
2020-03-24 13:26
递归在JavaScript中的应用
题目来自
codewars
,原题大意为,你在森林中需要一个方向的指引走出去,因为精力和食物有限,所以你要精简路径,比如路径为,东-西-南-北,那你就呆在原地不要动,如果路径为东--西--西--南--北,那就只往西走好了
洛天天
·
2020-03-24 13:24
Parts of a list -- 7 Kyu
原题http://www.
codewars
.com/kata/parts-of-a-list/train/cpp题目WriteafunctionPartlistthatgivesallthewaystodividealist
jdzhangxin
·
2020-03-23 07:38
codewars
记录 字符串
//输入n计算1+1/4+1/7+......+1/3(n-1)返回两位小数并转化为String//遍历字符串查看小于m的字母//将字符串后四位以外的字符全部换为#//判断输入的字符串是否有重复,有重复返回false;没有返回ture//判断一个数n是否能被开方//将一串英文根据空格分解,找出最短的单词的长度//按照空格分割字符串并找出最大和最小的数。publicstaticStringserie
伥依
·
2020-03-22 21:58
codewars
php部分--返回字符串最短单词长度
返回一行字符串中最短的一个单词的长度。functionfindShort($str){$arrayLength=array();$array=explode("",$str);//通过空格切分字符串成为数组foreach($arrayas$arr){array_push($arrayLength,strlen($arr));//遍历$array,把单词长度存入另一个数组}sort($arrayLe
MakingChoice
·
2020-03-17 23:03
笔记:正则表达式
最近,在
CodeWars
进行编程练习,遇到很多字符串匹配的问题。练习相关的几道题后发现,使用正则表达式解决字符串匹配类的问题,代码更加简洁、高效。因此,开始看正则表达式相关的资料,希望以后在C
catHeart
·
2020-03-12 14:05
像Ruby一样写ObjC,用block实现链式方法调用
Github源码引言一切要从我加入了
Codewars
网站,开始与世界各地的Coder们一同刷题开始说起。
秋刀生鱼片
·
2020-03-12 12:03
[7kyu]Fizz Buzz
该算法题来自于
codewars
【语言:javascript】,翻译如有误差,敬请谅解~任务返回一个包含从1到N的数组,其中N是参数值。N不会小于1。
君肄塵
·
2020-03-12 06:42
Moves in squared strings (I) -- 7Kyu
原题http://www.
codewars
.com/kata/56dbe0e313c2f63be4000b25/train/cpp题目Movesinsquaredstrings(I)Thiskataisthefirstofasequenceoffourabout"SquaredStrings
jdzhangxin
·
2020-03-11 17:29
[8kyu]Invert values
该算法题来自于
codewars
【语言:javascript】,翻译如有误差,敬请谅解~任务给定一组数字,返回每个数字的反转值。将每个正数都转成负数,负数转成正数。
君肄塵
·
2020-03-09 03:57
[
Codewars
] 103: Path Finder #2: shortest path
题目TaskYouareatposition[0,0]inmazeNxNandyoucanonlymoveinoneofthefourcardinaldirections(i.e.North,East,South,West).Returntheminimalnumberofstepstoexitposition[N-1,N-1]ifitispossibletoreachtheexitfromthe
novelworm
·
2020-03-08 21:12
[7kyu]Simple Fun #334: Two Beggars And Gold
该算法题来自于
codewars
【语言:javascript】,翻译如有误差,敬请谅解~任务乞丐A和B同时发现一些黄金。
君肄塵
·
2020-03-08 19:13
实现函数链式计算
今天在
codewars
上做题时发现一道很不错的题目,写下来分享。
YongpingZhao
·
2020-03-08 16:08
工作工具使用技巧及学习
##1、提高js基础知识及技能:https://www.
codewars
.com/dashboard刷题https://developer.mozilla.org/en-US看原生API##2、提高办公技能的方法
陌上晴天
·
2020-03-06 15:54
[TDD][
Codewars
]Number of People in the Bus
Codewars
上隨機挑到的題目:NumberofPeopleintheBus【題目描述】題目描述看測試用例比較好懂:testcases題目解釋:每一個int[]都有兩個正整數,第一個代表上車的乘客數,
就是91
·
2020-03-02 13:23
[7kyu]Find the smallest integer in the array
该算法题来自于
codewars
【语言:javascript】,翻译如有误差,敬请谅解~任务找出数组中最小的元素,并返回。
君肄塵
·
2020-02-29 08:15
非常不错的一个做编程题的网站
开门见山:http://www.
codewars
.com/(该网站的链接)首页部分:登录页面:注册的时候,需要你选上一项语言,并且要通过测试进入后再次选择:还有成绩统计还有战绩排名(做个题都玩这么极致)
极分享
·
2020-02-28 01:31
[6kyu]Simple Fun #340: Minimum Possible Maximum Gap
该算法题来自于
codewars
【语言:javascript】,翻译如有误差,敬请谅解~介绍在整数数组中,gap表示两个相邻元素之间的差值。Maximumgap是指所有间隙的最大值。
君肄塵
·
2020-02-25 21:08
使用缓存解决js递归调用性能问题
说明这是在
codewars
.com上刷的一道js练习题,在此做个记录问题描述TheFibonaccisequenceistraditionallyusedtoexplaintreerecursion.斐波那契序列通常是用来解释递归调用
scarecrowlxb
·
2020-02-24 10:02
Codewars
之 Multiples of 3 and 5 解法
Ifwelistallthenaturalnumbersbelow10thataremultiplesof3or5,weget3,5,6and9.Thesumofthesemultiplesis23.Finishthesolutionsothatitreturnsthesumofallthemultiplesof3or5belowthenumberpassedin.Note:Ifthenumber
伟健Wiken
·
2020-02-24 09:05
[7kyu]Find twins
该算法题来自于
codewars
【语言:javascript】,翻译如有误差,敬请谅解~任务找出数组中重复的元素,并返回,如果没有,返回null。
君肄塵
·
2020-02-21 01:40
Codewars
一、计算重复次数编写一个函数,该函数将返回在输入字符串中多次出现的不区分大小写的字母字符和数字的计数。可以假定输入字符串仅包含字母(大写和小写)和数字。Example"abcde"->0#nocharactersrepeatsmorethanonce"aabbcde"->2#'a'and'b'"aabBcde"->2#'a'occurstwiceand'b'twice(`b`and`B`)"Ind
Non_variable
·
2020-02-20 22:00
卢小七的刷题笔记(js)
题目来源:
Codewars
题目:CoordinatesValidator题目难度:4kyu(理论上难,实际本题不是很难)Youneedtocreateafunctionthatwillvalidateifgivenparametersarevalidgeographicalcoordinates.Validcoordinateslooklikethefollowing
卢小七
·
2020-02-15 00:55
CodeWars
打卡(03)
Details:Giventwoarraysofstringsa1anda2returnasortedarrayrinlexicographicalorderofthestringsofa1whicharesubstringsofstringsofa2.Example1:a1=["arp","live","strong"]a2=["lively","alive","harp","sharp","a
影醉阏轩窗
·
2020-02-13 01:50
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
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
其他