So… it’s Friday again… time for another Bubble Programming challenge…
The concept is simple:
The Palindrome Checker Challenge
A Palindrome is a word, phrase, number, or string of text, which is the same backwards as it is forwards (e.g “radar”, “1234321”, etc.).
The challenge is simple:
Using only vanilla Bubble, create some logic to determine whether a text, input by the User, is a palindrome or not.
Here’s an example: Palindrome Checker (bubbleapps.io)
as before - No plugins, and No custom code allowed (at least initially… once you’ve solved it with Vanilla Bubble, feel free to try the same with plugins/code if you like to compare).
**notes**:
There are at least two different approaches here, and depending on which one you take you may run into some issues/limitations of Bubble which make this more challenging than it should be.
My first two attempts to solve this were rather more complex than they needed to be - but there is a relatively clean, and simple way to do this with Vanilla Bubble, although it took me 3 attempts to find it (you might find it straight away!).
Also, be sure to check that your solution is 100% accurate… there is one particular pathway to solving this which (due to how Bubble works) might lead you to a false sense of success here, giving the correct result most, but not all of the time.
Also, in my example I’m ignoring spaces and capitalization, but considering punctuation. It’s up to you how you approach that.
Give it a try