Add a TextField to Alert in SwiftUI

By Samim

In this tutorial, we will see how to add a TextField to an Alert in SwiftUI. In iOS 16 and above versions, we can now add one or more TextField or SecureField components within an .... Read More

Cross mark or X mark (✘,☒,⨂) symbol in LaTeX

By Parvez Akhtar Pasha

In LaTeX, there is a default command $\times$ to get an X-mark or cross-mark symbol in the document. But this command works only in math mode. Generally, this command can be used f.... Read More

Remove NavigationBar Back Button Title in SwiftUI

By Samim

In this tutorial, we will see how to remove the Navigation Bar back button in SwiftUI. The back button in SwiftUI navigation bars displays the title of the previous view. This can .... Read More

Find pascal triangle upto nth depth in C++

By Swabhiman Mallick

Pascal’s triangle is a special arrangement of coefficients of the expansion of any binomial expression, such as (x+y)n . The binomial coefficients formed are written row-wise.... Read More

Depth Limited Search Implementation Using Python Programming

Depth Limited Search Implementation Using Python Programming

By Isha Bansal | February 3, 2024

In this tutorial, we will be learning about Depth Limited Search and also will learn how to implement the same using Python programming language. DLS is an extension of Depth-first-search and if you are unaware of what it is, have a look at the tutorial below. Also Read:  How to implement Depth First Search algorithm […] Read More

Python | Understanding FileField in Django models

By Nishtha Grover

In this tutorial, we are going to learn about the FileField in Django models– its use and arguments usability. Django is an MVT ( Model View Template) framework of Python. Creati.... Read More

Group multiple occurrences of array elements ordered by first occurrence in C++

By Amit Raja Kalidindi

In this tutorial, we are going to learn how to group multiple occurrences of array elements in the order of the first occurrence of the elements in C++. Naive Solution: Let us assu.... Read More

Hyphen (-), En-dash (–), and Em-dash (—) in LaTeX

By Parvez Akhtar Pasha

In this tutorial, I will show you how to get Hyphen (-), En-dash (–), and Em-dash (—) in LaTeX. Hyphen (-): To get the Hyphen symbol in LaTeX you can use the - (dash) key from .... Read More