博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Complete The Pattern #1
阅读量:6080 次
发布时间:2019-06-20

本文共 679 字,大约阅读时间需要 2 分钟。

Task:

You have to write a function pattern which creates the following pattern upto n number of rows.

  • If the Argument is 0 or a Negative Integer then it should return ""

Pattern:

122333.........nnnnnn

Note: There are no spaces in the pattern

Hint: Use \n in string to jump to next line

 

无形装逼最为致命,居然喜欢上用Linq了

using System;using System.Linq;public class Kata{  public string Pattern(int n)  {    // Happy Coding ^_^     string result = string.Empty;            if (n > 0)            {                result = string.Join(Environment.NewLine, Enumerable.Range(1, n).Select(item => string.Join(string.Empty, Enumerable.Repeat(item, item))));            }            return result;  }}

 

转载地址:http://gwhgx.baihongyu.com/

你可能感兴趣的文章
《计算机视觉:模型、学习和推理》一2.7 期望
查看>>
立志让国内用户不再依赖国外DLP技术 天空卫士发布UCS新品
查看>>
浪潮M5设计解读:打破通用均衡,聚焦场景极致
查看>>
使用Apache Spark和MySQL打造强大的数据分析
查看>>
2016年全球10大数据中心提供商概览
查看>>
这就是我喜欢 Bootstrap的五个原因
查看>>
主流服务器虚拟化产品中的优势与短板概述
查看>>
3.5万个MongoDB数据库的约680TB数据存被盗风险!
查看>>
【原创】RabbitMQ 之 HTTP server 插件(翻译)
查看>>
php跨平台总结 常用预定义常量
查看>>
linux 下 apache启动、停止、重启命令
查看>>
阿里云网络系列之经典网络和专有网络
查看>>
建模:设计和UML的那点事
查看>>
百度搜索引擎只收录网站首页的原因
查看>>
Axis2-WebService框架的学习心得-01
查看>>
使用exp/imp来移动表空间到另一个数据库中的例子
查看>>
第一天:了解思维导图
查看>>
android GPS定位代码
查看>>
MySQL内核月报 2015.01-MySQL · 性能优化· Group Commit优化
查看>>
《卸甲笔记》-PostgreSQL和Oracle的数据类型的对比系列三:时间类型
查看>>