PETA India will forever remember @zubeengarg1 as a friend, a hero for animals and an inspiration.
Our heartfelt condolences go out to his loved ones.
Zubeen, we’ll miss you. 💔
#ZubeenGarg
Just earned my certificate in "The Basics of Google Cloud Compute"! 🎉 Learned how to leverage cloud tech for scalable, secure apps. Excited to apply these new skills & explore more in the world of #CloudComputing! 🚀 #GoogleCloud#TechSkills#LearningJourney
Hey @x I am looking to #connect with people who are interested in.
🌐Web development
🎨FrontEnd
🦍Agency
📊Data science
📣 Webflow
🦾Framer
🖥️JavaScript
💻Development
🤖Building online
🔋UI/UX
📂Freelance
#letconnect#buildinpublic#webflow
Hey @x I am looking to #connect with people who are interested in.
🌐Web development
🎨FrontEnd
🦍Agency
📊Data science
📣 Webflow
🦾Framer
🖥️JavaScript
💻Development
🤖Building online
🔋UI/UX
📂Freelance
#letconnect#buildinpublic#webflow
#DIPLOMATEAMANEGMENT
Today, we delve into the critical importance of shade trees in tea cultivation. We will explore the optimal characteristics of shade trees and their effective management for maximizing tea yield and quality.
@LuxmiTea#tea
🌟 Today, I am embarking on an exciting new journey with @TRATocklai! 🌟
I am thrilled to pursue a course in "Diploma in Tea Garden Management"☕, diving deep into the fascinating world of tea cultivation and management's
Hi everyone! 👋 I had to pause my 75day coding challenge around day 30 to prepare for an important entrance exam in chemistry and biology for a tea research institute. I’m thrilled to share that I've successfully cleared the exam! 🎉 Excited to get back to coding! #NeverGiveUp
I'm looking to #connect with people who are interested in
👨⚕️ Software Engineering
📲 Mobile Development
🌐 Web Development
🎨 Data Science
🔌 Machine Learning
🛠️ Cyber Security
🔧 DevOps
🚀Bug Bounty Hunters
💼 Freelancing
#letsconnect#buildinpublic
My opinion:- Marriage should mean equal rights for both partners. If a husband has no right to his wife's property, then the same should apply vice versa for true equality. #EqualRights#PropertyEquality#FairMarrige
#DAY41 /#75DAYCODINGCHALLENEGE
🚀 Excited to share my latest Java project! I built a simple library system that demonstrates OOP, conditional statements, arrays, and switch-case. Features include adding, listing, and searching for books. A great example of integrating key#JAVA
#DAY40 / #75DAYSCODINGCHALLENEGE Embarking on a web development journey with HTML & CSS! Breakdown of a professional profile page: structured HTML, styled with CSS. Let's create visually appealing websites to showcase skills & experiences. #WebDevelopment#HTML#CSS
#DAY9 /#InstaDSA
Solved all the 3 problem of the day and learned some of the new things and can’t able to mention all the things here but I posted all of the info in the ALT of each image you can check it out #java#das#leetcode#gfg#freecodecamp
ALT Problem no 1 :- Sort characters by frequency
https://leetcode.com/problems/sort-characters-by-frequency/
Breakdown :- The Java solution for sorting a string `s` in decreasing order based on character frequency employs a systematic approach. Initially, a HashMap is utilized to count the frequency of each character in the input string. This involves iterating through the string and updating the count of each character in the HashMap. Next, a list of unique characters is created from the keys of the frequency map. These characters are sorted in non-increasing order based on their frequencies, achieved through a custom comparator. Finally, a StringBuilder is used to construct the sorted string by iterating through the sorted characters and appending each character to the result string according to its frequency. This approach ensures the efficient sorting of characters by frequency, enabling the creation of the desired sorted string in decreasing order of frequency.
ALT Problem no2 :- atoi
https://leetcode.com/problems/string-to-integer-atoi/
Breakdown:- The Java implementation of the `myAtoi` function efficiently converts a given string into a 32-bit signed integer, following a defined algorithm. Initially, the function initializes variables for the current index, sign, and total sum. It proceeds to ignore any leading whitespace characters by incrementing the index until a non-whitespace character is encountered. Subsequently, it determines the sign of the integer by examining the next character. If a '-' or ' ' is present, the sign is adjusted accordingly, and the index is incremented. The function then iterates through the string, parsing digits and accumulating the total sum while handling potential overflow conditions. If the parsed integer exceeds the range of a 32-bit signed integer, the function returns the corresponding maximum or minimum value. Finally, the sign is applied to the total sum, and the result is returned as the final output.
ALT Problem no 1 :- Set Matrix Zeros
https://leetcode.com/problems/set-matrix-zeroes/
Breakdown of the code :- To solve the problem of setting rows and columns to zero in a given matrix if an element is zero, we can use a constant space solution. The idea is to use the first row and first column of the matrix itself to keep track of which rows and columns should be zeroed.
ALT Problem no 2 :- Rotate Matrix my 90deg
https://leetcode.com/problems/rotate-image/
Breakdown of the code:-The provided Java solution for rotating an `n x n` 2D matrix by 90 degrees clockwise in place involves two main steps: transposing the matrix and then reversing each row. Initially, the length of the matrix is stored in `n`. The first step, transposing the matrix, involves iterating through the upper triangle of the matrix (excluding the diagonal). For each element at position `(i, j)`, it swaps the element with the corresponding element at position `(j, i)`, effectively turning rows into columns. This is accomplished using nested loops where the inner loop starts from `i` to avoid redundant swaps. The second step is to reverse each row to complete the 90-degree rotation. This is done by iterating through each row and swapping elements from the start with elements from the end until reaching the middle of the row.
ALT Problem no 3 :-Print Matrix in spiral
https://leetcode.com/problems/spiral-matrix/
Breakdown :- The Java solution efficiently obtains the elements of an `m x n` matrix in spiral order through systematic traversal. Initially, an empty list is created to hold the spiral-ordered elements, with an early return if the matrix is empty. Boundaries for the top, bottom, left, and right edges are set. The function then enters a while loop, continuing as long as the top boundary is less than or equal to the bottom boundary and the left boundary is less than or equal to the right boundary. Within the loop, four nested loops traverse the matrix according to the specified pattern: left to right along the top row, top to bottom along the right column, right to left along the bottom row (if applicable), and bottom to top along the left column. Each traversed element is added to the result .