Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Вивчайте Challenge | While Loops: Essentials
Python Loops

Свайпніть щоб показати меню

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.

Завдання

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?

Рішення

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 desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 2. Розділ 6
Ми дуже хвилюємося, що щось пішло не так. Що трапилося?

Запитати АІ

expand
ChatGPT

Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат

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.

Завдання

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?

Рішення

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 desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 2. Розділ 6
Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Ми дуже хвилюємося, що щось пішло не так. Що трапилося?
some-alt