文件名称:递归实验室nyc04-seng-ft-030920
文件大小:9KB
文件格式:ZIP
更新时间:2024-03-06 22:34:06
JavaScript
递归实验室! 事实证明,递归可以解决很多有趣的问题。 使用字符串 字符串是一种适合于递归解决方案的数据结构。 你能猜出为什么吗? 看一下下面的代码,然后尝试找出来: let myString = 'Algorithm' ; // Set 'myString' equal to a substring of itself minus the last letter... myString = myString . substring ( 0 , myString . length - 1 ) + // ...and then add the last letter back: myString [ myString . length - 1 ] ; // myString still contains 'Algorithm'! myString ; // => "Algorithm"
【文件预览】:
recursion-lab-nyc04-seng-ft-030920-master
----index.html(692B)
----.learn(133B)
----.canvas(144B)
----CONTRIBUTING.md(2KB)
----test()
--------index-test.js(4KB)
--------root.js(589B)
--------mocha.opts(16B)
----LICENSE.md(1KB)
----README.md(5KB)
----.gitignore(651B)
----index.js(29B)
----package.json(1KB)