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
/** | |
* Greatest Common Divisor of Strings | |
* | |
* @param {String} str1 | |
* String of characters. | |
* | |
* @param {String} str2 | |
* String of characters. | |
* | |
* @return {String} |
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
/** | |
* Merge Strings Alternatively | |
* | |
* @param {String} word1 | |
* String of characters. | |
* | |
* @param {String} word2 | |
* String of characters. | |
* | |
* @return {String} |
NewerOlder