add clarifiying comment about not removing code
This commit is contained in:
parent
0c5601ebd4
commit
74ab0b7cc6
|
@ -2,4 +2,5 @@ const repeatString = function() {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Do not edit below this line
|
||||||
module.exports = repeatString;
|
module.exports = repeatString;
|
||||||
|
|
|
@ -2,4 +2,5 @@ const reverseString = function(str) {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Do not edit below this line
|
||||||
module.exports = reverseString;
|
module.exports = reverseString;
|
||||||
|
|
|
@ -2,4 +2,5 @@ const removeFromArray = function() {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Do not edit below this line
|
||||||
module.exports = removeFromArray;
|
module.exports = removeFromArray;
|
||||||
|
|
|
@ -2,4 +2,5 @@ const sumAll = function() {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Do not edit below this line
|
||||||
module.exports = sumAll;
|
module.exports = sumAll;
|
||||||
|
|
|
@ -2,4 +2,5 @@ const leapYears = function() {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Do not edit below this line
|
||||||
module.exports = leapYears;
|
module.exports = leapYears;
|
||||||
|
|
|
@ -6,6 +6,7 @@ const ctof = function() {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Do not edit below this line
|
||||||
module.exports = {
|
module.exports = {
|
||||||
ftoc,
|
ftoc,
|
||||||
ctof
|
ctof
|
||||||
|
|
|
@ -22,6 +22,7 @@ const factorial = function() {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Do not edit below this line
|
||||||
module.exports = {
|
module.exports = {
|
||||||
add,
|
add,
|
||||||
subtract,
|
subtract,
|
||||||
|
|
|
@ -2,4 +2,5 @@ const palindromes = function () {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Do not edit below this line
|
||||||
module.exports = palindromes;
|
module.exports = palindromes;
|
||||||
|
|
|
@ -2,4 +2,5 @@ const fibonacci = function() {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Do not edit below this line
|
||||||
module.exports = fibonacci;
|
module.exports = fibonacci;
|
||||||
|
|
|
@ -2,4 +2,5 @@ const getTheTitles = function() {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Do not edit below this line
|
||||||
module.exports = getTheTitles;
|
module.exports = getTheTitles;
|
||||||
|
|
|
@ -2,4 +2,5 @@ const findTheOldest = function() {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Do not edit below this line
|
||||||
module.exports = findTheOldest;
|
module.exports = findTheOldest;
|
||||||
|
|
|
@ -2,4 +2,5 @@ const caesar = function() {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Do not edit below this line
|
||||||
module.exports = caesar;
|
module.exports = caesar;
|
||||||
|
|
|
@ -2,4 +2,5 @@ function pigLatin(string) {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = pigLatin;
|
// Do not edit below this line
|
||||||
|
module.exports = pigLatin;
|
||||||
|
|
|
@ -2,4 +2,5 @@ const snakeCase = function() {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Do not edit below this line
|
||||||
module.exports = snakeCase;
|
module.exports = snakeCase;
|
||||||
|
|
Loading…
Reference in New Issue