📦 NEW: Ajout de la fonction isPalindrome
This commit is contained in:
parent
aca93676e9
commit
6c8e57540b
3
.github/backup.sql
vendored
3
.github/backup.sql
vendored
File diff suppressed because one or more lines are too long
@ -11,6 +11,7 @@ const convertEncodingOutput = require('./main/convertEncoding');
|
|||||||
const randomQuote = require('./main/randomQuote');
|
const randomQuote = require('./main/randomQuote');
|
||||||
const linkShortener = require('./main/linkShortener');
|
const linkShortener = require('./main/linkShortener');
|
||||||
const rightPriceOutput = require('./main/rightPrice');
|
const rightPriceOutput = require('./main/rightPrice');
|
||||||
|
const isPalindromeOutput = require('./main/isPalindrome');
|
||||||
|
|
||||||
const functionObject = {
|
const functionObject = {
|
||||||
randomNumber : randomNumberOutput,
|
randomNumber : randomNumberOutput,
|
||||||
@ -26,6 +27,7 @@ const functionObject = {
|
|||||||
randomQuote : randomQuote,
|
randomQuote : randomQuote,
|
||||||
linkShortener : linkShortener,
|
linkShortener : linkShortener,
|
||||||
rightPrice : rightPriceOutput,
|
rightPrice : rightPriceOutput,
|
||||||
|
isPalindrome : isPalindromeOutput
|
||||||
};
|
};
|
||||||
|
|
||||||
// Choisi la fonction à exécuter
|
// Choisi la fonction à exécuter
|
||||||
|
48
api/assets/functions/main/isPalindrome.js
Normal file
48
api/assets/functions/main/isPalindrome.js
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
const errorHandling = require('../../utils/errorHandling');
|
||||||
|
const { requiredFields } = require('../../config/errors');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description Inverse la chaîne de caractère
|
||||||
|
* @param {string} string
|
||||||
|
* @returns {string}
|
||||||
|
* @example reverseString('Hello') → 'olleH'
|
||||||
|
*/
|
||||||
|
function reverseString(string) {
|
||||||
|
return string.split("").reverse().join('');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description Vérifie si un mot est un palindrome (un mot qui peut s'écrire dans les deux sens)
|
||||||
|
* @requires reverseString
|
||||||
|
* @param {string} string
|
||||||
|
* @param {string} reverseStringResult La chaîne de caractères inversée
|
||||||
|
* @returns {boolean}
|
||||||
|
* @example isPalindrome('kayak') → true
|
||||||
|
*/
|
||||||
|
function isPalindrome(string, reverseStringResult) {
|
||||||
|
return string === reverseStringResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* OUTPUTS */
|
||||||
|
module.exports = isPalindromeOutput = ({ res, next }, argsObject) => {
|
||||||
|
let { string } = argsObject;
|
||||||
|
|
||||||
|
// S'il n'y a pas les champs obligatoire
|
||||||
|
if (!(string)) {
|
||||||
|
return errorHandling(next, requiredFields);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof string !== 'string') {
|
||||||
|
return errorHandling(next, { message: "Vous devez rentré une chaîne de caractère valide.", statusCode: 400 });
|
||||||
|
}
|
||||||
|
|
||||||
|
string = string.toLowerCase();
|
||||||
|
|
||||||
|
const reverseStringResult = reverseString(string);
|
||||||
|
const isPalindromeResult = isPalindrome(string, reverseStringResult);
|
||||||
|
return res.status(200).json({
|
||||||
|
isPalindrome: isPalindromeResult,
|
||||||
|
reverseString: reverseStringResult,
|
||||||
|
resultHTML: `<p>"${string}" ${(isPalindromeResult) ? "est" : "n'est pas"} un palindrome car <br/> "${string}" ${(isPalindromeResult) ? "===" : "!=="} "${reverseStringResult}"</p>`
|
||||||
|
});
|
||||||
|
}
|
Reference in New Issue
Block a user