Last active
August 29, 2015 14:02
-
-
Save jikeytang/23466a3462f57ce3c434 to your computer and use it in GitHub Desktop.
[ Javascript ] - 20140618-题目1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 如何把一个字符串,用特定的符号有序的连接,列出所有连接可能。 | |
| 如:'ab' -> a-b, | |
| 'abc' -> a-bc, a-b-c, ab-c, | |
| 'abcd' -> a-bcd, ab-cd, abc-d,a-b-cd, ab-c-d,a-bc-d,a-b-c-d | |
| PS: | |
| 1. 回复时注意加上下面这句话,才会有语法高亮或格式缩进。 | |
| ```javascript | |
| // you code | |
| ``` | |
| 2. 粘贴代码时请使用shift+tab,缩进前面的空白。 |
gaojunle
commented
Jun 24, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment