reshmaharidhas.hashnode.devHow to pack images in Python Tkinter file to an Exe file?Ever had the experience of developing a Graphical User Interface (GUI) with images in widgets in Python using Tkinter, and after converting that .py file to an .exe file, the images included in the GUI is showing error?! This article helps to solve t...Apr 14, 2024·3 min read
reshmaharidhas.hashnode.devList in PythonList is a data structure similar to array. The List in Python can hold any number of elements in it. It does not have a fixed size. List is indexed. It means we can access the elements of a list by mentioning its index number. Indexing starts from 0,...Jan 16, 2024·4 min read
reshmaharidhas.hashnode.devRotting Oranges | Minimum Time required to rot all oranges in a box | Leetcode 994In this article, I am explaining the optimal approach to solve the minimum time required to rot all the fresh oranges in given box of oranges. ‘Rotting oranges’ problem is about finding whether all the oranges in a matrix or box is rotten because of ...Nov 13, 2022·12 min read
reshmaharidhas.hashnode.devBubble Sorting AlgorithmBubble sort is a comparison-based sorting algorithm where adjacent elements of the array are compared repeatedly, and they are swapped if they are not in order. https://media.giphy.com/media/3o6Zt5jXXzAzdikVmE/giphy.gif Bubble sort runs on an array o...Nov 12, 2022·2 min read
reshmaharidhas.hashnode.devConvert Java GUI program to executable file from NetBeansThis is an easy & simple way for any programmers new to Java or NetBeans IDE. Starting this article with a cup of coffee. Coffee is an international drink for developers, coders, programmers. As you are reading this article as a Java programmer, I h...Nov 11, 2022·3 min read