An open API service indexing awesome lists of open source software.

https://github.com/kruutteri1/codewars

🥋 CodeWarsKats. Java solutions
https://github.com/kruutteri1/codewars

4kyu 5kyu 6kyu 7kyu codewars codewars-java codewars-solutions java

Last synced: 3 months ago
JSON representation

🥋 CodeWarsKats. Java solutions

Awesome Lists containing this project

README

          

# CodeWars

![alt text](https://www.codewars.com/users/Kruutteri1/badges/large)

[Profile](https://www.codewars.com/users/Kruutteri1)

Contains katas solved in Java. Each solved kata consists of javadoc with info about it and code.
This structure is used in order to facilitate analysis of solution.

## Katas:
### 3 kyu:
- [How many are smaller than me II?](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu3/HowManySmaller.java)

### 4 kyu:
- [Range Extraction](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu4/Range.java)
- [Codewars style ranking system](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu4/RankSystem.java)
- [Roman Numerals Helper](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu4/RomanNumerals.java)
- [The Greatest Warrior](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu4/Warrior.java)
- [Human readable duration format](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu4/TimeFormatter.java)

### 5 kyu:
- [HumanReadableTime](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu5/HumanReadableTime.java)
- [Square Matrix Multiplication](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu5/MatrixMultiplication.java)
- [Number of trailing zeros of N!](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu5/NumberZeros.java)
- [ROT13](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu5/Rot13.java)

### 6 kyu:
- [Roman Numerals Encoder](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu6/Conversion.java)
- [Create Phone Number](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu6/CreatePhoneNumber.java)
- [Sum of Digits / Digital Root](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu6/DRoot.java)
- [Find the unique number](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu6/FindUniqueNum.java)
- [Does my number look big in this?](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu6/NumberUtils.java)
- [Valid Phone Number](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu6/ValidPhoneNumber.java)
- [Who likes it?](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu6/WhoLikes.java)
- [Tribonacci Sequence](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu6/Xbonacci.java)

### 7 kyu:
- [Make a function that does arithmetic!](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu7/ArithmeticFunction.java)
- [Testing 1-2-3](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu7/LineNumbering.java)
- [String ends with?](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu7/StringEnds.java)
- [Is this a triangle?](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu7/TriangleTester.java)
- [Vowel Count](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu7/Vowels.java)
- [Binary Addition](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu7/binaryAdd.java)
- [Isograms](https://github.com/Kruutteri1/CodeWars/blob/main/src/kyu7/isogram.java)