0xsweatsweat.hashnode.dev·Jul 17, 2024Simple Substitution Cipher Helper - codewarsThis problem is currently rated as a 6 kyu (ratings on codewars range from 8 (easiest) to 1 (hardest)) problem on codewars, this is its description : “A simple substitution cipher replaces one character from an alphabet with a character from an alte...DiscussProgramming Blogs
Filip Melkafilipmelka.hashnode.dev·Jul 11, 2024Solving a Code Wars Challenge with the Reduce Method and a Bitwise OperatorWhile solving problems on Code Wars, I came across an interesting problem called Find the Odd Int. It seemed simple at first, but one particular solution fascinated me so much that I decided to write about it. The problem Here's what the problem asks...DiscussCodewars
0xsweatsweat.hashnode.dev·Jul 11, 2024Moving Zeros To The End - codewarsThis problem is currently rated as a 5kyu*(ratings on codewars range from 8 (easiest) to 1 (hardest))* problem on codewars, this is it’s description : “Write an algorithm that takes an array and moves all of the zeros to the end, preserving the orde...DiscussPython
0xsweatsweat.hashnode.dev·Jul 10, 2024Valid Phone Number - codewarsThis problem is currently rated as a 6 kyu*(difficulty ratings on codewars range from 8 (easiest) to 1 (hardest))* problem at codewars, this is it’s description : “Write a function that accepts a string, and returns true if it is in the form of a ph...DiscussPython
Chris Dourisdigitalcreations.hashnode.dev·Apr 27, 2024Day 74/100 100 Days of codeI created a new Github repo and divided the project into two parts. The first part runs a secondary program and reads the results from a CSV file. Then, the main application simulates these results using SDL. The second program now exists as a submod...Discuss100 Days of CodeC
Chris Dourisdigitalcreations.hashnode.dev·Apr 25, 2024Day 73/100 100 Days of CodeMost of the code in Rebuild Back Better is complete, but it is still missing assets, which I will create myself. There is another project I would like to start now, but I need to refresh my memory on the C programming language. I created a Codewars a...Discuss100 Days of CodeC
Catherine Chendev.cathzchen.com·Apr 14, 2024Coding Training: How to Improve Your Coding SkillsThere's a lot that goes into becoming a better programmer, so let's just tackle one way that helps improve your programming skills today: practice, practice, practice solving problems. 😤 Practice Makes Perfect Mastering any skill takes time, and co...Discusscoding
Obidur Rahmanashfin.hashnode.dev·Mar 24, 2024Let's Count the Smiley Faces From an arrayWe will be solving a 6kyu problem from CodeWars. This one ->Count the smiley faces! | Codewars The Question Given an array (arr) as an argument complete the function countSmileys that should return the total number of smiling faces. Rules for a smili...Discuss·1 like·26 readssmiley
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 Curbeammonaecurbeam.hashnode.dev·Oct 27, 2023How To Solve CodewarsAs a full stack 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 underst...Discuss·1 like·41 readsCodewars