Skip to content

Instantly share code, notes, and snippets.

View nuxy's full-sized avatar
☠️
I am altering the code. Pray I don't alter it any further.

Marc S. Brooks nuxy

☠️
I am altering the code. Pray I don't alter it any further.
View GitHub Profile
@nuxy
nuxy / leetcode-1071
Created March 12, 2024 23:33
LeetCode > 1071. Greatest Common Divisor of Strings (JavaScript solution)
/**
* Greatest Common Divisor of Strings
*
* @param {String} str1
* String of characters.
*
* @param {String} str2
* String of characters.
*
* @return {String}
@nuxy
nuxy / leetcode-1768
Created March 12, 2024 21:53
LeetCode > 1768. Merge Strings Alternatively (JavaScript solution)
/**
* Merge Strings Alternatively
*
* @param {String} word1
* String of characters.
*
* @param {String} word2
* String of characters.
*
* @return {String}