Category Archives: Challenges

Swift – Check If Linked List is Palindrome or Not.
In this challenge, we will be checking whether a given linked list is palindrome or not. For starters, you can copy the Linked List from the post Linked List in Swift if you don’t already have the Linked List created in your playground. Once you have copied the code to the playground, let’s jump right […]

SWIFT – Print elements of Linked List in Reverse Order
Hey Folks! Today we will be doing a challenge to print out the elements of a linked list in reverse order in Swift First of all, If you do not have a Linked List created in your playground, go to my Linked List In Swift blog post and copy the code. Now let’s dive directly […]

Linked List in Swift
A linked list is a collection of values arranged in a linear unidirectional sequence. Linked List in Swift can be implemented using the code shared in this blog post. In this blog post, I am sharing the code that I wrote for creating a linked list. This is not a detailed blog post about what […]