Filter
Exclude
Time range
-
Near
9 Apr 2024
std::cin >> userWord; if (checkPalindrome(userWord)) { std::cout << "The input word is a palindrome." << std::endl; } else { std::cout << "The input word is not a palindrome." << std::endl; } return 0; }
1
2
24
9 Apr 2024
#Day3 #Bowentechweek #Hackathon Writing a program to check if a string is a palindrome C #include <iostream> #include <string> bool checkPalindrome(const std::string& word) { int left = 0; int right = word.length() - 1; while (left < right) {
1
2
35
Hey, read my latest: “ Hello 2022 - Intro beginner #3 - checkPalindrome ” getrevue.co/profile/SwiftFil…

1
15
def checkPalindrome(string): if string == string[::-1]: return "Palindrome" return "Nope" Today's Date is Palindrome 12521 [ 12th may 21]
1
1
6
hace unas semanas vi a @CarGDev enseñando su solución sobre los palindromos, & I want to share: function checkPalindrome(inputString) { const palindrome = inputString.split("").reverse().join(""); if (inputString === palindrome) { return true } { return false } }
1
Day 22 of #100daysofcodechallenge 🔺 Solved Linked list question 🔹 Find a node in LL 🔸 Append last N node 🔹 Remove duplicate 🔸 CheckPalindrome in LL 🔹 Merge two sorted LL #Microsoft #100daysofpractice #CodeNewbie #100DaysOfCode #programing #tech #learning
1
5
Replying to @LuisPatino92
@LuisPatino92 can you share the “checkpalindrome” function please?
1
2
hey @CodeFights, very nice challenges! But I got stuck in `checkPalindrome` using #Kotlin. One of the test cases seems dubious.
1