在知乎上看到这样一个问题:http://www.zhihu.com/question/31805304; 简单地说就是实现这样一个add函数: add(x1)(x2)(x3)...(xn) == x1 + x2 + x3 + ... + xn // true; 正好发现在codewars上也有这道题,那不妨一块刷了吧. Kata Description level:5 kyu We want to create a function that will add numbers together…
今天做的题目是:写一个函数toWeirdCase(),对给定的一个字符串string进行偶数位(包括0)变成大写的操作,字符串string分为单个单词的字符串和多个单词组成的句子.效果应该是这个样子滴: 我是这样写的,写完很有成就感啊,觉得我是最牛逼的,我太厉害了...balabala...: function toWeirdCase(string){ //先判断字符串是否是单个单词组成 if(string.indexOf(" ")==-1){//单个单词组成的字符串 var arr1…
http://www.codewars.com/kata/54ff3102c1bad923760001f3/solutions/csharp 判断给定的字符串有多少个a e i o u using System; using System.Linq; public static class Kata { public static int GetVowelCount(string str) { ); } } public static class Kata { public static int…
记录一下比较聪明的codewars练习题解决方案,不得转载. 2017/12/19 You will be given a string and you task is to check if it is possible to convert that string into a palindrome by removing a single character. If the string is already a palindrome, return "OK". If it is…
https://www.codewars.com/kata/51f2b4448cadf20ed0000386/javascript 中午是一个易困的时间段.如果其它人不睡觉还好. 这个js题目就是说如果你的函数传入一个url路径,但是你要把含有#的给去掉 Complete the function/method so that it returns the url with anything after the anchor (#) removed. // returns 'www.codewa…