下面的序列的公式是什么? 123、624、693、4812 等
在在线活动中,我们必须构建一个算法来生成如下所示的系列......, 对于输入 6,算法必须生成.....
123 624 第693章 4812 15510 12186.
我们想了很多并且对算法感到非常沮丧。 任何人都可以帮助我们...
编辑:得到算法。感谢伊里特·卡特里尔
In an online event, we have to frame an algorithm to generate a series as given below...,
For input 6, the algorithm has to generate.....
123
624
693
4812
15510
12186.
we thought a lot and really frustrated about the algorithm.
Could any one help us...
EDIT: Got Algorithm. Thanks to Irit katriel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来第 i 个数字是由 i、2*i 和 3*i 连接而成。连接的顺序每次移动1。
It looks like the i-th number is composed of i,2*i and 3*i, concatenated. The order of concatenation is shifted by 1 each time.