Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 1 KB

README.md

File metadata and controls

21 lines (13 loc) · 1 KB

CodeWars Katas

This repository contains all CodeWars Katas that I have solved with Java language. I completed them mostly while learning Java, but I still solve new ones from time to time.

My CodeWars account: Ilia Malafeev

My current progress: 3 kyu, I'm 1% on the way to 2 kyu.

My current leaderboard percentile: Top 2.510%

All Katas are divided between folders representing the difficulty level, e.g. 5 kyu or 3 kyu.

Every Kata has a name which corresponds to the original name at CodeWars and can be found on the source.

Every Kata contains:

  • Description - to easily understand the goal of the task;
  • Main method - to check if the code is solving the task correctly right in the file;
  • Goal method - the solution to the Kata, the code Kata challenges you to write.

Some Katas have _UPGRADED ending in the naming, this means that I have refactored/shortened the code in the process of learning something new.