Skip to main content

Algorithms language Chapter 1: Getting started with algorithms (Part-2)

Chapter 1: Getting started with algorithms



Section 1.2: Getting Started with Simple Fizz Buzz Algorithm in Swift

For those of you that are new to programming in Swift and those of you coming from different programming bases,

such as Python or Java, this article should be quite helpful. In this post, we will discuss a simple solution for

implementing swift algorithms.

Fizz Buzz

You may have seen Fizz Buzz written as Fizz Buzz, FizzBuzz, or Fizz-Buzz; they're all referring to the same thing. That

"thing" is the main topic of discussion today. First, what is FizzBuzz?

This is a common question that comes up in job interviews.

Imagine a series of a number from 1 to 10.

1 2 3 4 5 6 7 8 9 10

Fizz and Buzz refer to any number that's a multiple of 3 and 5 respectively. In other words, if a number is divisible

by 3, it is substituted with fizz; if a number is divisible by 5, it is substituted with buzz. If a number is simultaneously

a multiple of 3 AND 5, the number is replaced with "fizz buzz." In essence, it emulates the famous children game fizz buzz".

To work on this problem, open up Xcode to create a new playground and initialize an array like below:

// for example

let number = [1,2,3,4,5]

// here 3 is fizz and 5 is buzz

To find all the fizz and buzz, we must iterate through the array and check which numbers are fizz and which are

buzz. To do this, create a for loop to iterate through the array we have initialised:

for num in number {

// Body and calculation goes here

}

After this, we can simply use the "if else" condition and module operator in swift ie - % to locate the fizz and buzz

for num in number {

if num % 3 == 0 {

print("\(num) fizz")

} else {

print(num)

}

}

Great! You can go to the debug console in Xcode playground to see the output. You will find that the "fizzes" have

been sorted out in your array.

For the Buzz part, we will use the same technique. Let's give it a try before scrolling through the article — you can

check your results against this article once you've finished doing this.

for num in number {

if num % 3 == 0 {

print("\(num) fizz")

} else if num % 5 == 0 {

print("\(num) buzz")

} else {

print(num)

}

}

Check the output!

It's rather straight forward — you divided the number by 3, fizz and divided the number by 5, buzz. Now, increase

the numbers in the array

let number = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]

We increased the range of numbers from 1-10 to 1-15 in order to demonstrate the concept of a "fizz buzz." Since 15

is a multiple of both 3 and 5, the number should be replaced with "fizz buzz." Try for yourself and check the answer!

Here is the solution:

for num in number {

if num % 3 == 0 && num % 5 == 0 {

print("\(num) fizz buzz")

} else if num % 3 == 0 {

print("\(num) fizz")

} else if num % 5 == 0 {

print("\(num) buzz")

} else {

print(num)

}

}

Wait...it's not over though! The whole purpose of the algorithm is to customize the runtime correctly. Imagine if the

range increases from 1-15 to 1-100. The compiler will check each number to determine whether it is divisible by 3

or 5. It would then run through the numbers again to check if the numbers are divisible by 3 and 5. The code would

essentially have to run through each number in the array twice — it would have to runs the numbers by 3 first and

then run it by 5. To speed up the process, we can simply tell our code to divide the numbers by 15 directly.

Here is the final code:

for num in number {

if num % 15 == 0 {

print("\(num) fizz buzz")

} else if num % 3 == 0 {

print("\(num) fizz")

} else if num % 5 == 0 {

print("\(num) buzz")

} else {

print(num)

}

}

As Simple as that, you can use any language of your choice and get started

Enjoy Coding

Comments

Popular posts from this blog

Object-Oriented Programming (OOPS)

 Object-Oriented Programming (OOPS) OOPS stands for "Object-Oriented Programming" and is a programming paradigm that focuses on the creation and manipulation of objects. In object-oriented programming, software is organized around objects, which are instances of classes that encapsulate data and behavior. The main principles of object-oriented programming include: Encapsulation: Objects encapsulate data and behavior together, hiding the internal details and exposing a public interface for interacting with the object. Inheritance: Classes can inherit properties and methods from other classes, forming a hierarchy of classes. Inheritance allows for code reuse and the creation of specialized classes based on existing ones. Polymorphism: Polymorphism allows objects of different classes to be treated as objects of a common superclass. This enables the use of generic code that can operate on objects of different types, providing flexibility and extensibility. Abstraction: Abstractio...

Cascading Style Sheets (CSS) Programming Language

  CSS (Cascading Style Sheets) is a programming language used for styling and formatting the appearance of web pages. It works in conjunction with HTML to define the visual presentation of elements on a website. Here are some key points about CSS: Selectors: CSS uses selectors to target specific HTML elements and apply styles to them. Selectors can be based on element types, class names, IDs, attributes, or other criteria. Properties and Values: CSS properties define the visual aspects of elements, such as color, size, position, and font. Each property has a corresponding value that specifies how the property should be applied. For example, the color property sets the text color, and the value can be a named color or a hexadecimal code. Style Rules: CSS style rules consist of a selector and one or more property-value pairs enclosed in curly braces. Multiple style rules can be combined to target different elements or groups of elements on a page. External, Internal, and Inline CSS:...

Cyber Security

Cyber Security   Cybersecurity refers to the practice of protecting computer systems, networks, programs, and data from digital attacks, unauthorized access, and damage. With the increasing reliance on technology and the interconnectedness of our digital world, cybersecurity has become a critical concern for individuals, businesses, governments, and organizations. Here are some key aspects of cybersecurity: Information security : This involves protecting information assets from unauthorized access, disclosure, alteration, or destruction. It includes implementing measures such as access controls, encryption, and authentication to safeguard data. Network security : Network security focuses on securing the infrastructure and connections between computers and devices. It includes techniques like firewalls, intrusion detection systems, and virtual private networks (VPNs) to defend against unauthorized access and prevent malicious activities. Application security : Application security i...