Day 1/100 Solved leetcode problem #151 (Reverse Words In a String) #Python #Coding #100DaysOfCode #LeetCode #Programming
2
2
Hi!! solved problem no. 33 on leetcode today (search in rotated sorted array) Here is the code: #python #dsa #code #LearningInpublic
4
Hiii!!! just solved (find the number of occurrence) approach: 1. find first occurrence at which index 2. find last occurrence at which index 3. return last occurrence- first occurrence +1 #DSA #pythonprogramming #LearnInPublic
2
Hiii!!! solved problem #34 leetcode( Find First and Last Position of Element in Sorted Array) used lowerbound and upperbound logic to solve it #DSA #Python #LearningInPublic
2
Hiiii!!!!!!! just solved floor in sorted array using Python here is the code: #DSA #pythonlearning #learninginpublic #ProblemSolving
2
Hi!!!! Just solved leetcode #35(search insert position) Here's the code #Python #LeetCode #LearningInPublic
2
Hi!! implemented lower_bound in python #python #dsa #problemsolving #LearnInPublic
2
🚀 Just created a new Python project — Random Password Generator with Strength Meter 🔐 It lets you generate secure passwords and instantly checks their strength 💪 Check it out here 👇 🔗 github.com/Isha01-S/python_l… #Python #GitHub #Coding #OpenSource #DevCommunity
2
Just finished a fun beginner project C Trivia Quiz Game built in Python: -Runs in console -Asks random C questions -10s timer per question -Shows your score at the end Repo 👉 github.com/Isha01-S/c_trivia… #Python #CodingJourney #LearningInPublic
3
Namaste Doston!!! Solved leetcode problem no. 237(delete node in a linked list) idea:Copy the next node’s value into the given node and skip the next node to delete it from the list. #python #LeetCode #DSA #programming #EngineersDay2025
3
Hi!! solved prime numbers using Sieve of Eratosthenes (C programming) here's the code: github.com/Isha01-S/c_practi…
2
👋 Hi everyone! 🧠 Learning update: ✔️ Revising DBMS, OS, Computer Networks & OOPs ✔️ Solving problems in C ✔️ Working on Data Structures & Algorithms using Python ✔️ Just getting started with Django!
2
Namaste!!!! solved leetcode problem number 49(group anagrams) Idea: Grouped words that are anagrams by sorting each word and using the sorted result as a key to collect similar words together. #LeetCode #coding #Python #DSA
3
Hi!!!!! Solved leetcode problem number 242 today Idea: Counted chars from ‘s’, subtracted using ‘t’; if any count drops below zero or a char is missing, it’s not an anagram - this ensures equal occurrences
3
Hi!!! Today I solved LeetCode 217 (Contains Duplicate): Idea: Put the values of nums in a set, then compare the lengths. If they are unequal, return True; otherwise, return False.
3
Hi!!! Solved leetcode problem number 1 (two sums) today Check → target - num Store → num:index #Python #LeetCode
5
Hi!!! Solved LeetCode 283 – Move Zeroes Idea: Move all non-zero numbers forward, then fill the rest with 0s. #CodingJourney #LeetCode
3
My C learning journey: loops ✅ arrays ✅ pointers 😵 Macros → #define WOWWW Me: wow... just wow 🤯 #c_programming
2
🚀 Built a simple Python project: Snake 🐍 | Water 💧 | Gun 🔫 -Just if-elif-else for logic -random.choice() for computer’s move Super simple, yet fun to code! 🧑‍💻✨ #pythonprogramming
2
Hi!!! Solved Problem (189 Rotated Array) on LeetCode today: Problem: Rotate an array k steps to the right. Trick: Just use reverse 3 times ✨ Steps: 1. Reverse the whole array 2. Reverse the first k elements 3. Reverse the rest
3