Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Leer Challenge | While Loops: Essentials
Python Loops

Veeg om het menu te tonen

book
Challenge

Palindrome Problem

You're doing well! It's time to solve the first algorithmic problem. In this task, you must check if the given word is a palindrome - a word that is equal to itself in reverse order. For instance::

aabaa is a palindrome

abcdef is not a palindrome

eerghgre is not a palindrome

s is a palindrome

This can be done using loops: for each pair of opposite characters, check if they are equal (1st and nth, 2nd and (n-1)th, etc.). The middle symbol (if any) is opposite to itself and is always equal. In this algorithm, compare each pair of symbols until such exist or you meet unequal ones.

If pair of unequal symbols occurs than word is no longer a palindrome, so you can skip other unchecked pairs and return the negative result. Even if the other pairs are equal symbols, word is no longer a palindrome.

Otherwise, if all pairs are checked and none symbols are unequal, the result is positive.

Don't be in a rush and think well about how it can be solved.

Taak

Swipe to start coding

Check if the given word is a palindrome. Print YES if it is and NO otherwise. Follow the comments in the task code and fill the gaps. Think about where you need to use the break keyword.

Think about corner cases when the word is empty or has one symbol: what will be the output? How can you process it?

Oplossing

Follow up: What do you think about the next strings?

  • )(()())(

  • ())(((())(

Are they palindromic or not? Use your code to check them. The result might surprise you.

Switch to desktopSchakel over naar desktop voor praktijkervaringGa verder vanaf waar je bent met een van de onderstaande opties
Was alles duidelijk?

Hoe kunnen we het verbeteren?

Bedankt voor je feedback!

Sectie 2. Hoofdstuk 6
Onze excuses dat er iets mis is gegaan. Wat is er gebeurd?

Vraag AI

expand
ChatGPT

Vraag wat u wilt of probeer een van de voorgestelde vragen om onze chat te starten.

book
Challenge

Palindrome Problem

You're doing well! It's time to solve the first algorithmic problem. In this task, you must check if the given word is a palindrome - a word that is equal to itself in reverse order. For instance::

aabaa is a palindrome

abcdef is not a palindrome

eerghgre is not a palindrome

s is a palindrome

This can be done using loops: for each pair of opposite characters, check if they are equal (1st and nth, 2nd and (n-1)th, etc.). The middle symbol (if any) is opposite to itself and is always equal. In this algorithm, compare each pair of symbols until such exist or you meet unequal ones.

If pair of unequal symbols occurs than word is no longer a palindrome, so you can skip other unchecked pairs and return the negative result. Even if the other pairs are equal symbols, word is no longer a palindrome.

Otherwise, if all pairs are checked and none symbols are unequal, the result is positive.

Don't be in a rush and think well about how it can be solved.

Taak

Swipe to start coding

Check if the given word is a palindrome. Print YES if it is and NO otherwise. Follow the comments in the task code and fill the gaps. Think about where you need to use the break keyword.

Think about corner cases when the word is empty or has one symbol: what will be the output? How can you process it?

Oplossing

Follow up: What do you think about the next strings?

  • )(()())(

  • ())(((())(

Are they palindromic or not? Use your code to check them. The result might surprise you.

Switch to desktopSchakel over naar desktop voor praktijkervaringGa verder vanaf waar je bent met een van de onderstaande opties
Was alles duidelijk?

Hoe kunnen we het verbeteren?

Bedankt voor je feedback!

Sectie 2. Hoofdstuk 6
Switch to desktopSchakel over naar desktop voor praktijkervaringGa verder vanaf waar je bent met een van de onderstaande opties
Onze excuses dat er iets mis is gegaan. Wat is er gebeurd?
some-alt