Malik M Abdul Fazal
B.Tech CSE Grad | Python | Data Analytics | SQL | MS Excel | Deep Learning
- Report this post
Day 12 of 100 Days of Code: Leetcode Problem Solved!Today’s challenge was Leetcode #242 - Valid Anagram.⏳ Time Complexity: O(n)💾 Space Complexity: O(n)In this problem, I worked on determining whether two strings are anagrams of each other. By leveraging Python's Counter to count the frequency of characters in both strings, I was able to compare them efficiently. The solution ensures optimal time and space complexity while maintaining simplicity.Moving forward with determination, excited for the challenges ahead! 💪Leetcode: https://lnkd.in/gHBew2jk#Python #CodingChallenge #Leetcode #ProblemSolving #PythonDeveloper #100DaysOfCode
4
To view or add a comment, sign in
More Relevant Posts
-
Malik M Abdul Fazal
B.Tech CSE Grad | Python | Data Analytics | SQL | MS Excel | Deep Learning
- Report this post
Day 6 of 100 Days of Code: Leetcode Problem Solved! Today's challenge was Leetcode #217 - Contains Duplicate. Here’s how I solved it:⏳ Time Complexity: O(n)💾 Space Complexity: O(n)This solution works by iterating through the list and using a set to track numbers that have already been seen. If a duplicate is found, the function returns True; otherwise, it returns False after the loop. The algorithm runs efficiently with linear time complexity and space complexity proportional to the input size.Another problem down, and I’m eager to tackle the next one! 💪LeetCode link for you guys to try: https://lnkd.in/gAXEwfuh#Python #CodingChallenge #Leetcode #ProblemSolving #PythonDeveloper #100DaysOfCode
1
Like CommentTo view or add a comment, sign in
-
Richard James
Full Stack Developer | Building innovative web, mobile and desktop applications for business growth | teachable | problem solving and creative.
- Report this post
🚀 Day 14 of the 30-Day Code Challenge! 🚀Today's task: Created a Python script to count the occurrences of words in a text file and display the top N most frequent words! 📄📊Check out the code on GitHub: Day 14 File Manipulationhttps://lnkd.in/dfkFscTTEnhance your text analysis skills with this handy tool! 💻📈 #30DaysCodeChallenge #Day14 #FileManipulation #PythonScripting
To view or add a comment, sign in
-
Hari Madhav Matta
4th year b.tech- Artificial intelligence and machine learning-on Mission 'v'
- Report this post
🚀 Day 7 of My 30-Day DSA Challenge 🚀Today, I tackled three interesting problems and implemented solutions in Python:Reverse StringLeetCode Problem: https://lnkd.in/dXqnKNBXImplemented an in-place reverse function using two-pointer technique.Middle of the Linked ListLeetCode Problem: https://lnkd.in/dXRM2s_BFound the middle of a linked list using the fast and slow pointer method.Maximum SubarrayLeetCode Problem: https://lnkd.in/dKCxfQqHSolved using Kadane’s algorithm for an optimal O(n) time complexity solution.💻 Check out the code for today's problems on my GitHub:https://lnkd.in/dHcmxixK#Python #Coding #30DaysOfCode #DataStructures #Algorithms #LeetCode #DSA #PythonProgramming #Developer #ChallengeAccepted
4
Like CommentTo view or add a comment, sign in
-
Harini Chivukula
Capgemini Invent l Ex RIL, DuPont, Goldman Sachs
- Report this post
Today marks the beginning of my 100 days of Python coding challenge, guided by Angela Yu.Day 1: I completed my first mini project where I dived into the basics of Python by creating a fun band name generator. Learnt how to take user inputs and concatenate them - a good start. Check out the code I wrote for this fairly simple activity in the link mentioned.This journey is all about expanding my skillset and exploring the vast possibilities with Python, one step at a time. Excited to see what the next 99 days will bring! 😀#Day1 #100DaysofCode #Python
38
3 Comments
Like CommentTo view or add a comment, sign in
-
Bhumika Prajapati
"With a passion for innovation and security, I'm drawn to the intersection of Artificial Intelligence and Ethical Hacking. | Interested in Web Developing | Ex-Intern at NIELIT| Python Lover also.
- Report this post
Hi Connections!!👉Day-13 of #100daysofcodechallenge👉Created a program to find compound interest for given values in python. #Explanation of code Hello everyone! So here, Today I used also #def function for Compound Interest of given values are there is Principal, Rate, Time.Then calculates the compound interest for using Amount and CI formula.#Amount=principal*(pow((1+rate/100),time))#CI=Amount-PrincipalAnd print statement assign the value of CI and printed it.after that, Driver code I put the value of CI for the output display.#𝒄𝒐𝒅𝒊𝒏𝒈𝒋𝒐𝒖𝒓𝒏𝒆𝒚 #𝒄𝒐𝒅𝒊𝒏𝒈𝒄𝒉𝒂𝒍𝒍𝒆𝒏𝒈𝒆 #𝒑𝒚𝒕𝒉𝒐𝒏𝒑𝒓𝒐𝒈𝒓𝒂𝒎𝒎𝒊𝒏𝒈
13
Like CommentTo view or add a comment, sign in
-
Malik M Abdul Fazal
B.Tech CSE Grad | Python | Data Analytics | SQL | MS Excel | Deep Learning
- Report this post
Day 9 of 100 Days of Code: Leetcode Problem Solved!Today’s challenge was Leetcode #228 - Summary Ranges.⏳ Time Complexity: O(n)💾 Space Complexity: O(1) (excluding the output list)In this problem, I tackled the task of summarizing ranges within a sorted list of integers. The solution efficiently identifies consecutive sequences and formats them into ranges, or simply lists individual numbers when no range exists. This approach ensures optimal performance while keeping the logic straightforward.Feeling great about today’s progress and looking forward to more challenges ahead! 💪Leetcode link for you guys to try:https://lnkd.in/gpup4rT8#Python #CodingChallenge #Leetcode #ProblemSolving #PythonDeveloper #100DaysOfCode
7
Like CommentTo view or add a comment, sign in
-
Boston Institute of Analytics - Perungudi, Chennai Campus
229 followers
- Report this post
🔍 Let's Test Your Python Bitwise Operations! 🔍Time for a quick coding challenge! 🚀 Can you predict the output of this code snippet? Hint: Using the left shift operator ('<<'),' x << 2' means shifting the binary representation of 'x' two positions to the left, effectively multiplying 'x' by 2 to the power of 2.Did you get it right? Share your answer in the comments below! Stay tuned for more Python challenges! 🧠💻 #PythonChallenge #CodingQuiz #TechTrivia #ProgrammingPuzzle #LearnToCode
Like CommentTo view or add a comment, sign in
-
YERRA MOHAN
B.Tech '25 | Python | DSA | SQL | Front-end Dev
- Report this post
Day 20 : 100 Days of Code 🚀 Today I solved "Happy Number" problem on LeetCodeA number is considered happy if repeatedly summing the squares of its digits eventually leads to 1. If it falls into an endless cycle without reaching 1, it’s deemed unhappy.Approach:>Sum of Squares Function computes the sum of the squares of the digits of a number.>By using a set, the function keeps track of numbers that have been encountered to detect cycles.>The function repeatedly transforms the number until it either reaches 1 (happy) or a cycle is detected (unhappy).#LeetCode #100DaysOfCode #ProblemSolving #Python
9
1 Comment
Like CommentTo view or add a comment, sign in
-
ArjanCodes
4,292 followers
- Report this post
One thing you'll often find yourself doing in your application is communicating with other APIs. 📢This week, I’ll explore Python packages that streamline this process, such as requests, aiohttp, and httpx. 🐍Bonus tip: Stay until the end, when I'll reveal why the underdog might actually be your best bet. ⭐️Curious to learn more? Watch the video here: https://lnkd.in/gh6N8H8u#python #pythonpackages #apis #applications #softwaredevelopment
34
Like CommentTo view or add a comment, sign in
-
Sanjana Komateswar
Ambitious Data Analyst | B.Tech in AI, Data Analytics + BS in Data Science | Seeking Dynamic Opportunities
- Report this post
Hello all,I have completed hashtag#Day7of#365daysofcodechallenge with @scaler_officialToday I solved the question-Functions (Python . Flow Control & Functions)🔍 Question:Write a Python function that calculates the factorial of a given number using flow control.🛠️ Working:The program checks if the input is negative; if so, it returns a message. Otherwise, it initializes a variable to 1 and uses a loop to multiply it by numbers from 1 to the input, yielding the factorial result.💡 Unveiling Hidden Insights:Conditional loops in Python, like while and for, can have an else block executed when the loop condition becomes false. This block is executed after the loop completes normally (not via a break statement), adding flexibility for handling specific outcomes.Scaler discord community link:discord.gg/vsuMePgHE9#scalerdiscord #codewithscaler #365daysofcodescaler #365daysofcode
10
Like CommentTo view or add a comment, sign in
1,020 followers
- 49 Posts
View Profile
FollowExplore topics
- Sales
- Marketing
- IT Services
- Business Administration
- HR Management
- Engineering
- Soft Skills
- See All