Skip to content
logo
Read more about the article Extract Text from Images: Build Your Own Web App with Python and Streamlit

Extract Text from Images: Build Your Own Web App with Python and Streamlit

  • Post author:Anam
  • Post published:October 4, 2024
  • Post category:Python

In today’s digital age, extracting text from images has become increasingly useful. Whether you need to digitize printed documents or extract text from images for further processing, Optical Character Recognition…

Continue ReadingExtract Text from Images: Build Your Own Web App with Python and Streamlit
Read more about the article Convert PDFs to Audiobooks with Python: Build Your Own App

Convert PDFs to Audiobooks with Python: Build Your Own App

  • Post author:Anam
  • Post published:October 4, 2024
  • Post category:Python

Audiobooks have gained immense popularity in recent years, with platforms like Amazon's Audible leading the charge. They offer the convenience of consuming books on the go, whether you're driving, exercising,…

Continue ReadingConvert PDFs to Audiobooks with Python: Build Your Own App
Read more about the article Merge Two Sorted Linked Lists | Leetcode 21

Merge Two Sorted Linked Lists | Leetcode 21

  • Post author:Anam
  • Post published:May 3, 2023
  • Post category:Python

You are given the heads of two sorted linked lists list1 and list2. Merge the two lists in a one sorted list. The list should be made by splicing together the nodes of the first…

Continue ReadingMerge Two Sorted Linked Lists | Leetcode 21
Read more about the article Reverse Linked List | Leetcode 206

Reverse Linked List | Leetcode 206

  • Post author:Anam
  • Post published:May 3, 2023
  • Post category:Leetcode/Python

Given the head of a singly linked list, reverse the list, and return the reversed list. Example 1: Input: head = [1,2,3,4,5] Output: [5,4,3,2,1] Example 2: Input: head = [1,2] Output: [2,1] Example…

Continue ReadingReverse Linked List | Leetcode 206
Read more about the article Check if Linked List has a Cycle | Linked List Cycle | Leetcode 141

Check if Linked List has a Cycle | Linked List Cycle | Leetcode 141

  • Post author:Anam
  • Post published:May 2, 2023
  • Post category:Leetcode/Python

Given head, the head of a linked list, determine if the linked list has a cycle in it. There is a cycle in a linked list if there is some node…

Continue ReadingCheck if Linked List has a Cycle | Linked List Cycle | Leetcode 141
Read more about the article Remove nth node from end of list | Python | Leetcode 19

Remove nth node from end of list | Python | Leetcode 19

  • Post author:Anam
  • Post published:May 2, 2023
  • Post category:Leetcode/Python

Given the head of a linked list, remove the nth node from the end of the list and return its head. Example 1: Input: head = [1,2,3,4,5], n = 2 Output: [1,2,3,5] Example 2:…

Continue ReadingRemove nth node from end of list | Python | Leetcode 19
Read more about the article Linked Lists in Python – Everything you need to know as a programmer

Linked Lists in Python – Everything you need to know as a programmer

  • Post author:Anam
  • Post published:April 18, 2023
  • Post category:Python

Linked List is a linear and dynamic data structure that consists of series of nodes connected to each other. The elements are not stored contiguously, but linked with pointers . In linked list each…

Continue ReadingLinked Lists in Python – Everything you need to know as a programmer
Read more about the article Linked Lists: Everything you need to know as a programmer

Linked Lists: Everything you need to know as a programmer

  • Post author:Anam
  • Post published:April 15, 2023
  • Post category:Python

Linked List is a linear and dynamic data structure that consists of series of nodes connected to each other. The elements are not stored contiguously, but linked with pointers .In…

Continue ReadingLinked Lists: Everything you need to know as a programmer
Read more about the article Lists in Python – Everything you need to know as a programmer

Lists in Python – Everything you need to know as a programmer

  • Post author:Anam
  • Post published:April 15, 2023
  • Post category:Python

Lists are used to store multiple items in a single variable. We can store different data types in a list. List items are ordered, changeable, and allow duplicate values. Indexing start from…

Continue ReadingLists in Python – Everything you need to know as a programmer
Read more about the article Python Arrays: Everything you need to know as a programmer

Python Arrays: Everything you need to know as a programmer

  • Post author:Anam
  • Post published:April 13, 2023
  • Post category:Python/CODING

An array is a container that stores and organizes items sequentially. They are an ordered collection of elements and each value belongs to the same data type. Indexing of the…

Continue ReadingPython Arrays: Everything you need to know as a programmer
  • 1
  • 2
  • Go to the next page
Copyright - OceanWP Theme by OceanWP