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
- Host: GitHub
- URL: https://github.com/kruutteri1/codewars
- Owner: Kruutteri1
- Created: 2023-01-22T23:54:36.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-07T10:26:25.000Z (over 2 years ago)
- Last Synced: 2025-08-02T04:58:45.703Z (6 months ago)
- Topics: 4kyu, 5kyu, 6kyu, 7kyu, codewars, codewars-java, codewars-solutions, java
- Language: Java
- Homepage: https://www.codewars.com/users/Kruutteri1
- Size: 41 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CodeWars

[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)