首页
AI Coding
NEW
沸点
课程
直播
活动
AI刷题
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
会员
登录
注册
codewars kata
孑孑曰
创建于2023-05-20
订阅专栏
主要记录下平时练习的题目中可以借鉴学习的【best practice】
暂无订阅
共7篇文章
创建于2023-05-20
订阅专栏
默认顺序
默认顺序
最早发布
最新发布
7. Split Strings
Complete the solution so that it splits the string into pairs of two characters. If the string conta
6.Duplicate Encoder
The goal of this exercise is to convert a string to a new string where each character in the new str
5. Builder Tower
Build a pyramid-shaped tower, as an array/list of strings, given a positive integer number of fllors
4. Exes and Ohs
Check to see if a string has the same amount of x's and o's. The method must return a boolean and be
3. Odd or Even
Given a list of interagers. determine whether the sum if its elements is odd or even. Give your answ
2. Digit*Digit
Welcome. in this kata, you are asked to square every digit of a number and concatenate them. For Exa
1. Insert dashes
编写一个函数,在给出的一串数字中,每两个相邻奇数之间将插入-,例如,454793输出结果为4547-9-3,......