Ankita Saini has Published 277 Articles

Swift Program to Shuffle the Elements of an Array

Ankita Saini

Ankita Saini

Updated on 24-Apr-2023 09:46:13

Swift provide an in built function named as shuffle() to shuffle the elements of an array. This function takes a sequence or array and then shuffle the places of the elements present in the given array. Syntax func shuffle() Where this function does not take any parameter. Also it ... Read More

Swift Program to Show Use of Super Keyword in Class

Ankita Saini

Ankita Saini

Updated on 24-Apr-2023 09:45:19

In Swift, super keyword in used to access or call the methods, properties, and initialisers of the superclass from the base class. Or we can say that super keyword add more functionality to the superclass by adding its own unique behaviour. You can use super keyword with class properties, methods, ... Read More

Swift Program to Show Usage of Static keyword in Class

Ankita Saini

Ankita Saini

Updated on 24-Apr-2023 09:44:43

In Swift, static keyword is used to define or create type-level properties and method that only belongs to the class itself rather than to its instances. Or we can say that we can directly access the static properties and methods of a class with help of class itself instead of ... Read More

Swift Program to Search an Element in a Set

Ankita Saini

Ankita Saini

Updated on 24-Apr-2023 09:43:16

In Swift, to search elements in a set we can use either contains(_:) function or linear search. Both the methods efficiently search an element in a set. Lets discuss both the methods in detail along with examples. Method 1: Using contains(_:) Function Swift provide an inbuilt function named as contains() ... Read More

Swift Program to Rotate Elements of an Array

Ankita Saini

Ankita Saini

Updated on 24-Apr-2023 09:41:02

In Swift, we create a user defined function to rotate the elements of an array. In this function, first we find the total number of rotation and then rotate the array by the specified number of rotation. For example − Array = [3, 5, 2, 1, 7, 9] Rotation = ... Read More

Swift Program to Reverse a Set

Ankita Saini

Ankita Saini

Updated on 24-Apr-2023 09:40:02

In swift, a set is a unordered collection that only contain unique values. As we known that a set is an unordered collection so their is no direct way like an array to reverse the elements of the set. However you can reverse a set by converting it into an ... Read More

Swift Program to Remove Null from a Set

Ankita Saini

Ankita Saini

Updated on 24-Apr-2023 09:39:28

In swift, a set is used to create an unordered collection of unique elements. In Swift, to store a nil value in the set you need to define the set as a optional type because nil is a optional value. So to remove null for a set we can use ... Read More

Swift Program to Remove a Subset from a Set

Ankita Saini

Ankita Saini

Updated on 24-Apr-2023 09:38:12

In Swift, a set is used to create an unordered collection of unique elements. To remove a subset from a set Swift provide two insult functions named as subtract() and subtracting(). Lets discuss both the methods in detail along with examples. Method 1: Using subtract(_:) Function The subtract(_:) function is ... Read More

Swift Program to Recursively Linearly Search an Element in an Array

Ankita Saini

Ankita Saini

Updated on 24-Apr-2023 09:36:11

In Swift, linear search is the most easiest search algorithm. It is also known as sequential search because it check all the elements of the given array or sequence one by one. If the target element is found, then return the index of that array otherwise return element not found. ... Read More

Swift Program to read and print two-dimensional array

Ankita Saini

Ankita Saini

Updated on 24-Apr-2023 09:34:42

Just like other programming languages Swift also supported two- dimensional array. A two dimensional array is known as an array of array that store same type of data in a tabular format. Or we can say 2-D array is an array which represent homogeneous data in rows and columns. ... Read More

Previous 1 ... 3 4 5 6 7 ... 28 Next
Advertisements