C++ program to delete the middle node in a linked list

Learn how to delete the middle node in a linked list in C++. We will learn how to insert at head of a linked list, delete the middle node in a linked list and display the complete list.

Read

How to hide soft keyboard in Android (Kotlin) programmatically

Android program to hide software keyboard programmatically in Kotlin. Keyboard opens automatically when we clicks on an EditText. We can also programmatically hide it using system service.

Read

Encoding/decoding JSON in Dart explanation with examples

Learn how to encode/decode JSON in dart with examples. dart:convert is used for data conversion as well as for encoding/decoding JSON values.

Read

Three different ways to create an empty string array in Kotlin

Three different ways to create one empty string array in Kotlin. We will use arrayOf, string constructor and arrayOfNull for that.

Read

Extension function in Kotlin explanation with examples

This post will give you an introduction to kotlin extension function and how to use it with examples. Extension functions are used to add more functionality to a kotlin class easily.

Read

Learn to iterate through the key-value pairs of a swift dictionary

This post will show you how to iterate through the key-value pairs of a swift dictionary. We will do it by using a for-in loop, using forEach and by using enumerated.

Read

How to show pdf files in react native applications

In this tutorial, we will learn how to load a pdf file from remote cloud storage and how to show it in a react native app.

Read

Linear search implementation in python

Learn to implement linear search program in python. Linear search is a search algorithm that searches for an item linearly. This python program will search in an array using linear search.

Read

3 different ways in Python to convert string to a tuple of integers

In this post, we will learn three different ways in python to convert string to a tuple of integers. We will use tuple constructor, splitting and using eval.

Read

String Prefix methods in Swift explanation with example

String prefix methods in swift. Learn how to use string prefix swift method with example.

Read