Skip to content
Open
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1650272
adding fix #1342 fixing docs for FenWickTree and DepthFirstSearch
mohmmadAyesh Mar 27, 2024
96985a6
fix the coding style to pass code-style check
mohmmadAyesh Mar 27, 2024
5aa8bfa
adding JSDOCS for BreadthFirstTreeTraversal.js and formatting the new…
mohmmadAyesh Mar 27, 2024
575eead
adding JSDOCS for the following files BoyerMoore checkRearrangedPalin…
mohmmadAyesh Mar 27, 2024
18edde7
fixing JSDOCS for Sorts Folder the folder that been modified are Alph…
mohmmadAyesh Mar 27, 2024
1ec1979
adding js docs to files that missing it in search folder like binaryS…
mohmmadAyesh Mar 27, 2024
ae93e49
fixing formatting to avoid code/style workflow fail
mohmmadAyesh Mar 27, 2024
7560357
fixing or applying suggested changes
mohmmadAyesh Mar 27, 2024
c70f197
Merge remote-tracking branch 'origin/fixing-JS-docs-for-Sorts-Folder'…
mohmmadAyesh Mar 27, 2024
8f10dee
Merge remote-tracking branch 'origin/fixing-JS-docs-for-Search-Folder…
mohmmadAyesh Mar 27, 2024
de118c6
Merge remote-tracking branch 'origin/fixing-string-folder-JSDOCS' int…
mohmmadAyesh Mar 27, 2024
d64f4c9
fixing formatting to pass code/style automatic test
mohmmadAyesh Mar 27, 2024
f9a154b
adding more commits on fix-js-docs
mohmmadAyesh Mar 28, 2024
1d37ed9
fixing styling and formatting
mohmmadAyesh Mar 28, 2024
d9cc779
try to resolve not belonging commit
mohmmadAyesh Mar 27, 2024
ad98cee
Resolve conflict in CheckPalindrome.js during cherry-pick
mohmmadAyesh Mar 27, 2024
8d5cc4b
Resolve merge conflict in checkPalindrome function
mohmmadAyesh Mar 27, 2024
fb5530f
fixing JSDOCS for some files in Recursive folder
mohmmadAyesh Mar 28, 2024
7ae0aad
fixing JSDOCS for some files in Math folder that missing it
mohmmadAyesh Mar 28, 2024
2f74313
fixing styling and formating of files in Maths folder to pass automat…
mohmmadAyesh Mar 28, 2024
3d06ddf
fixing formating of MobiusFunction.js
mohmmadAyesh Mar 29, 2024
780fb91
trying to fix spelling in LucasSeries.js
mohmmadAyesh Mar 29, 2024
714cd66
fixing spelling at LinearSieve.js
mohmmadAyesh Mar 29, 2024
53035ec
remove unnecessary changes
mohmmadAyesh Mar 29, 2024
42b95ed
modifying only jsdocs of BinaryToDecimal RGBToHex in Conversions folder
mohmmadAyesh Mar 29, 2024
d82e849
modifiying JSDOCS for uniquepath and zerooneknapsack files in dynamic…
mohmmadAyesh Mar 29, 2024
8aab6f9
modifying jsdocs at unique paths at dynamic folder
mohmmadAyesh Mar 29, 2024
7651b8b
modifying JSDOCS at BinaryLifting file at Graphs Folder
mohmmadAyesh Mar 29, 2024
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Resolve conflict in CheckPalindrome.js during cherry-pick
  • Loading branch information
mohmmadAyesh committed Mar 28, 2024
commit ad98ceedb2ea42f21c5f7045f797db75d1012ea4
1 change: 0 additions & 1 deletion String/CheckPalindrome.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
* Checks if a string is a palindrome.
* A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.
* Palindrome check is case sensitive; i.e., "Aba" is not considered a palindrome.
*
* @param {string} str The input string to be checked for palindrome.
* @returns {string} Returns 'Palindrome' if the input string is a palindrome,
* 'Not a Palindrome' if it is not, or an error message if the input is not a valid string.
Expand Down