cybermetaltechcybermetaltech.hashnode.dev·Nov 22, 2023Python Puzzle #1 (codewars - 8kyu)name: even or odd description: Create a function that takes an integer as an argument and returns "Even" for even numbers or "Odd" for odd numbers. my solution: def even_or_odd(number): if number % 2 == 0: return "Even" else: return "Odd" explication...DiscussPython
Monae Curbeammoecodez.hashnode.dev·Oct 27, 2023How To Solve CodewarsAs a self-taught developer, I am always looking for ways to improve my programming skills as it is important for me to consistently grow. One of the ways I do this is by using platforms like Codewars which allows me to challenge and improve my unders...Discuss·1 likeCodewars
Suleiman Osmancodewithsule.hashnode.dev·Oct 23, 2023Solving a Codewars Challenge as a Beginner using JavaScript.𝗖𝗼𝗱𝗲 𝗖𝗵𝗮𝗹𝗹𝗲𝗻𝗴𝗲: 𝐒𝐩𝐢𝐧 𝐀𝐫𝐨𝐮𝐧𝐝, 𝐓𝐨𝐮𝐜𝐡 𝐭𝐡𝐞 𝐆𝐫𝐨𝐮𝐧𝐝 The Challenge: Given a list of directions to spin, "left" or "right", I had to return an integer of how many full 360° rotations were made. Each word in the array repr...DiscussJavaScript
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
Nouman Rahmanprogrammingfire.com·Aug 7, 2023Why LeetCode and Codewars are Essential for Leveling Up Your SkillsIn the world of programming and software development, continuous learning and skill improvement are paramount. Aspiring developers and seasoned professionals alike are always on the lookout for effective ways to enhance their coding skills. Among the...Discuss·10 likes·244 readsleetcode
Dennis kestonedenniskestone.hashnode.dev·Jul 28, 2023Extract the domain name from a URLThis is the simplest solution to the Code Wars kata Problem I solved today. Here is the instruction: Write a function that when given a URL as a string, parses out just the domain name and returns it as a string. For example: * url = "http://github.c...Discussfunctions
Willwillsheppard.hashnode.dev·Jul 5, 2023Even Or OddDescription I recently completed a coding challenge on CodeWars called "Even Or Odd." The challenge was to create a function that takes an integer as an argument and returns "Even" for even numbers or "Odd" for odd numbers. It's a simple problem but ...Discuss·32 readsCodewars
Kavishwa Wendakoonkvshw.hashnode.dev·Jun 24, 2023Reversed Words CodeWars Question(1)I'm currently revising my JavaScript knowledge using the CodeWars platform until I'm confident enough to go for Leetcode. So today, I stumbled upon a really easy problem, but I got stuck because I forgot a few important things in that question. Below...Discuss·38 readsCodewars
Aakash Parmaraakashwrite.hashnode.dev·May 23, 2023"How to Build a Strong Foundation in Coding: Tips for Beginners"Are you new to coding and eager to get started? Starting the journey of learning to code can be both exciting and challenging. However, with the right guidance and mindset, you can navigate the path with confidence. Here are some valuable tips to hel...DiscussCodewars
Sarah Schilzfirst-codewars.hashnode.dev·May 11, 2023Solving my first codewars challengeCodewars is something that I was putting off doing for a while once it was introduced in the program I am following. I am in the 100 devs agency where they help people affected by the pandemic gain programming skills and help get paid clients. This p...Discuss·131 readsProgramming Blogs