Skip to content

Python solutions to Codewars challenges, demonstrating clean, modular code and problem-solving skills in string and number manipulation, ready for professional review.

Notifications You must be signed in to change notification settings

Bishop-Massey-Knapp/Codewars-Python-Challenges

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

# Codewars Python Challenges

This repository contains solutions to several Python challenges completed on the [Codewars](https://www.codewars.com/) platform.  
All solutions have passed the official Codewars test cases and are implemented in a clean, readable style.

---

View my Codewars Profile
https://www.codewars.com/users/Bishop-Massey-Knapp

---

## 📚 Challenges Included

### 1. Even or Odd
- **Kata:** [Even or Odd](https://www.codewars.com/kata/53da3dbb4a5168369a0000fe)  
- **Description:** Determines whether a given integer is even or odd.  
- **Example:**
```python
even_or_odd(2)  # "Even"
even_or_odd(7)  # "Odd"
2. Convert a Number to a String
Kata: Convert a Number to a String

Description: Converts an integer to its string representation.

Example:

python
Copy code
number_to_string(42)  # "42"
3. Remove String Spaces
Kata: Remove String Spaces

Description: Removes all spaces from a string.

Example:

python
Copy code
no_space("H e l l o")  # "Hello"
4. Vowel Count
Kata: Vowel Count

Description: Returns the number of vowels (a, e, i, o, u) in a given string.

Example:

python
Copy code
get_count("abracadabra")     # 5
get_count("this is a test")  # 4

About

Python solutions to Codewars challenges, demonstrating clean, modular code and problem-solving skills in string and number manipulation, ready for professional review.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages