codewars专题

codewars check_same_case 题解

题目 编写一个函数来检查两个给定的字符是否大小写相同。 如果任何字符不是字母,则返回-1如果两个字符大小写相同,则返回1如果两个字符都是字母且大小写不同,则返回0 例子 'a'并'g'返回1'A'并'C'返回1'b'并'G'返回0'B'并'g'返回0'0'并'?'返回-1 题解 1 此题主要考察基本判断语句的使用。 def same_case(a, b): # your cod

codewars,js实现5kyu:Write out numbers(数字转化为英文写法)

目录 题目简介Example我完成的代码我的解题思路我的难点 题目简介 该kata的链接地址 Create a function that transforms any positive number to a string representing the number in words. The function should work for all numbers bet

codewars:js实现5kyu:A Chain adding function

目录 题目描述Example我完成的代码我的思路我的难点 题目描述 该kata的链接: link. We want to create a function that will add numbers together when called in succession. add(1)(2);// returns 3 We also want to be able to