Personal blog

Writing every week about programming, new technology and books.

HACKERRANK SOLUTIONS

HackerRank Solution Arrays-DS in C#

20-Oct-2020
HackerRank Solution Arrays-DS in C#

In today's video I am going to solve the HackerRank problem Arrays - DS problem. This problem is inside the arrays section of the Data Structures category.

READ MORE

C# FOR BEGINNERS

Variables in C#

17-Oct-2020
Variables in C#

In today's video, I am going to talk about what are variables and how to use them in C#.

READ MORE

C# FOR BEGINNERS

Comments in C#

15-Oct-2020
Comments in C#

In this tutorial, I am going to quickly show you how to use comments in C#. There are two types of comments, one for commenting on only one line of code and another one for commenting on multiple lines of code.

READ MORE

C# FOR BEGINNERS

Introduction And Hello World

14-Oct-2020
Introduction And Hello World

This is the first episode in C# for beginners series. In this episode, I am going to introduce you to the visual studio to cover some very basic stuff and create a Hello World console app.

READ MORE

HACKERRANK SOLUTIONS

HackerRank Simple Text Editor Solution In C#

13-Oct-2020
HackerRank Simple Text Editor Solution In C#

Solving the HackerRank problem called Simple Text Editor. This problem is part of the Data Structures and Algorithms section. In order to solve this problem, I used the Stack data structure.

READ MORE

HACKERRANK SOLUTIONS

HackerRank Equal Stacks Solution in C#

12-Oct-2020
HackerRank Equal Stacks Solution in C#

Solving Equal Stacks problem on the HackerRank website using C#. This problem is part of the Data Structures section on HackerRank. For this solution, I used the Stacks data structure in order to solve the problem.

READ MORE

HACKERRANK SOLUTIONS

HackerRank Maximum Element Solution in C#

10-Oct-2020
HackerRank Maximum Element Solution in C#

Solving HackerRank problem called Maximum Element using C#. This problem is part of the Data Structures and Algorithms section in HackerRank and it can be solved by using the Stack data structure.

READ MORE

DATA STRUCTURES AND ALGORITHMS

Stack and Queue Explained And Implemented in C#

09-Oct-2020
Stack and Queue Explained And Implemented in C#

In today's video, I explained what are Stack and Queue data structures, how they work, and I also implemented them in C#.

READ MORE

HACKERRANK SOLUTIONS

HackerRank Self Balancing Tree Solution In Java

08-Oct-2020
HackerRank Self Balancing Tree Solution In Java

In today's video, I am going to solve the HackerRank question called Self Balancing Tree and explain how it works.

READ MORE

DATA STRUCTURES AND ALGORITHMS

Binary Search in C#

07-Oct-2020
Binary Search in C#

In today's lesson, I am going to talk about what is Binary Tree and how to implement it using C#. Also, I am going to compare it to some more common algorithms for searching like Iterative search and explain why Binary Search is more efficient.

READ MORE

DATA STRUCTURES AND ALGORITHMS

Binary Search Tree in C#

07-Oct-2020
Binary Search Tree in C#

In today's video, I am going to explain what is Binary Search Tree and how to create it with C#. I will also create two methods, Search and Insert and three different types of traversals.

READ MORE

PHP

Sending emails with mail() function in PHP

01-Apr-2020
Sending emails with mail() function in PHP

Learn how to send and recive emails in PHP using mail() fuctions and what are pros and cons of using it.

READ MORE

PYTHON

Fill credit card info in less then 10 lines of code with this Python script

25-Mar-2020
Fill credit card info in less then 10 lines of code with this Python script

Every time there is a need to shop online you will need to enter your credit card information. Learn how to automate this proccess in this quick and simple tutorial.

READ MORE

PYTHON

What is virtualt environment in Python?

24-Mar-2020
What is virtualt environment in Python?

Learn what is virtualt environment and how can you create one for managing Python packages inside projects.

READ MORE

PYTHON

How to install Python and run you first line of code

20-Mar-2020
How to install Python and run you first line of code

This is a tutorial about Python installation on Windows. It's quick and easy, so if you are interested in learning Python make sure to go through this tutorial to install it correctly.

READ MORE