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.
ReadAndroid 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.
ReadLearn how to encode/decode JSON in dart with examples. dart:convert is used for data conversion as well as for encoding/decoding JSON values.
ReadThree different ways to create one empty string array in Kotlin. We will use arrayOf, string constructor and arrayOfNull for that.
ReadThis 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.
ReadThis 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.
ReadIn 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.
ReadLearn 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.
ReadIn 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.
ReadString prefix methods in swift. Learn how to use string prefix swift method with example.
Read