Check if usage of capitals is correct in a word in C++

By yaswanth vakkala

In this article, let’s learn how to check if the usage of capitals is correct in the given word with the help of C++ programming. We can say capitals are used correctly when .... Read More

Python program to Sort elements by frequency

By Amruth Kumar

In this tutorial, we are going to sort elements in a list by their frequencies. To do this problem we have to first find the frequencies of elements. We can use dictionaries for fi.... Read More

Convert double number to 3 decimal places number in C++

By Nimish Dham

In this tutorial, we’ll be going over two methods of converting a double with any number of decimal places to a double with decimal places. The first method is arithmetic and.... Read More

How to run Cronjob in Django

By Shrimad Mishra

Hi folks, It’s been a year since I have written a blog, but now I have got an interesting problem to solve for you guys. At the end of this tutorial, I am sure you all will b.... Read More

Auto scroll to a specific position in SwiftUI

By shagrafnasheet

In the last post, we learned how to Scroll to a specific position with a button click. But what if we don’t want to do it manually like we want to do it without any user inte.... Read More

Scroll to a specific position in SwiftUI with button click

By shagrafnasheet

In order to scroll to a specific position in swiftUI we have something that we can use which is ScrollViewReader. We can tell it where to scroll and it will automatically scroll to.... Read More

Change the Status Bar text color in SwiftUI

By shagrafnasheet

The App will pick the status bar text color based on the system mode of appearance. For Example, if your mobile is in the dark mode, the status bar text will appear in light conten.... Read More

Convert all string items of a list to integer in Python

By Saruque Ahamed Mollick

In this tutorial, I will show you how to convert all string items of a list to integer items in Python. It’s better to show an example of what I am going to do in this tutori.... Read More

Related Posts