Hammad Raza Khanhammadrk.hashnode.dev·Sep 28, 2023Solution to Q2 Level -1#Solution - def animal_crackers(str): text= str.lower().split() #print(text) return text[0][0]==text[1][0] print(animal_crackers('Clever rat')) print(animal_crackers('Pink Parrot'))DiscussCHALLENGENED QUESTIONS FOR PYTHON BASICS (UDEMY)! HOW MUCH DID YOU GET RIGHT ?!Python
Marcia Crippsmarciac95.hashnode.dev·Sep 26, 2023Hello Youtube & The Power of AccountabilityHello everyone! Today, I wanted to take a moment to discuss my recent milestone, one that holds great significance in my coding journey. Exactly one year into my tech career, I've embarked on a new venture: creating a YouTube channel. My first video,...Discussyoutube
Olalekan AbdulfatahProblog.lekan.dev·Sep 25, 2023Article Writing is Hard !!!Okay, maybe not that hard to be honest. If you fully understand the topic you're writing about, you simply pour it into text, throw in some images to illustrate your haphazarded mind, structure your thoughts, ensure you're conveying a message, add a ...Discusscompetitive programmingdata structures
Ashis Kumar Behuraashiskumarbehura.hashnode.dev·Sep 22, 2023Pausing My 180 Days Coding Challenge Due To Mid-Sems.As my mid-semester exams are coming from the 3rd to the 6th of October, Pausing my coding challenge from the 23rd of September 6th of October. Will start it soon...Discusscoding challenge
Ashis Kumar Behuraashiskumarbehura.hashnode.dev·Sep 21, 2023Starting 180 Day Coding Challenge: Day 2/180Day Two Starting my 180 days coding challenge to complete DSA which will help me in building my Portfolio. Special thanks to Rohit Negi bhaiya for helping me learn with so many simple and in-depth examples. Assignment Answers: Day 2 video https:/...Discusscoding challenge
Ashis Kumar Behuraashiskumarbehura.hashnode.dev·Sep 21, 2023Starting 180 Day Coding Challenge: Day 1/180Day One Starting my 180 days coding challenge to complete DSA which will help me in building my Portfolio. Special thanks to Rohit Negi bhaiya for helping me learn with so many simple and in-depth examples. Assignment Answers: Day 1 video https://yo...Discusscoding challenge
RUDHRESH Siamrudhresh.hashnode.dev·Sep 17, 2023How to Become a Competitive Programmer: A Step-by-Step GuideCertainly! Here's an article on "How to Become a Competitive Programmer: A Step-by-Step Guide." Competitive programming is not just a hobby; it's a sport of the mind, a battle of algorithms and data structures. For those who love solving complex prob...Discuss·69 readsComputer Science
Himanshu Guptawritetoconnect.hashnode.dev·Sep 17, 2023# 100 Days of LeetCodeDay 2 of 100 100daysofcode Remove Duplicates from Sorted List Reorder List Swapping Nodes in a Linked List SOLUTIONS: //1. Remove Duplicates from Sorted List class Solution { public: ListNode* deleteDuplicates(ListNode* head) { if(...Discusscoding
Himanshu Guptawritetoconnect.hashnode.dev·Sep 16, 2023#100 days of LeetCodeDay 1 of 100 100daysofcode Majority Element Majority Element II Two Sum //1. Majority Element class Solution { public: int majorityElement(vector<int>& nums) { map<int, int> m; for(int i=0; i<nums.size(); i++){ m...Discuss·1 likecoding
Youhana Sheriffblog.youhanasheriff.com·Sep 14, 2023Cracking the Code: Mastering Algorithmic Problem Solving for Technical SuccessINTRODUCTION: Algorithmic problem-solving is the backbone of software development and the core skill of aspiring programmers. Whether you’re preparing for a technical interview or looking to improve your coding abilities, mastering common coding chal...DiscussProblem Solving