• Sign Up
    Time to claim your honor
  • Training
  • Practice
    Complete challenging Kata to earn honor and ranks. Re-train to hone technique
  • Freestyle Sparring
    Take turns remixing and refactoring others code through Kumite
  • Community
  • Leaderboards
    Achieve honor and move up the global leaderboards
  • Chat
    Join our Discord server and chat with your fellow code warriors
  • Discussions
    View our Github Discussions board to discuss general Codewars topics
  • About
  • Docs
    Learn about all of the different aspects of Codewars
  • Blog
    Read the latest news from Codewars and the community
  • Log In
  • Sign Up
hrafov Avatar
Name:Yevhen Hrafov
Clan:Unknown
Skills:java, # qa automation, performance analysys
Member Since:Apr 2023
Last Seen:Jun 2025
Profiles:
Following:0
Followers:1
Allies:0
View Profile Badges
Ad
Would You Pass the Google SQL Interview? Test Yourself with These 7 Concepts
Study up for your next SQL interview with these interview questions.
  • Stats
  • Kata
  • Collections
  • Kumite
  • Social
  • Discourse
  • Conversations (44)
  • Replies
  • Authored
  • Needs Resolution
  • Custom User Avatar
    • JohanWiltink
    • commented on "Pyramid Slide Down" kata
    • 8 days ago

    Which language does not have that example test already?

  • Custom User Avatar
    • hrafov
    • commented on "Pyramid Slide Down" kata
    • last month

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar
    • hrafov
    • commented on "Pyramid Slide Down" kata
    • last month

    at first I added test from description:
    @Test
    public void testFirst() {
    int[][] firstPyramid = new int[][]{
    {3},
    {7,4},
    {2,4,6},
    {8,5,9,3}
    };
    assertEquals(23, LongestSlideDown.longestSlideDown(firstPyramid));
    }

  • Custom User Avatar
    • AbdullahBakeBake
    • commented on "Dashatize it" kata
    • 3 months ago

    this is very helpful thank you

  • Custom User Avatar
    • hrafov
    • commented on "Invert binary tree" kata
    • 3 months ago

    For learning purpose will be good to add constructors to commented class TreeNode like this:
    public static class TreeNode {
    public int value;
    public TreeNode left;
    public TreeNode right;

        public TreeNode(int value) {
            this.value = value;
            this.left = this.right = null;
        }
        public TreeNode(int value, TreeNode left, TreeNode right) {
            this.value = value;
            this.left = left;
            this.right = right;
        }
    

    }

  • Custom User Avatar
    • Blind4Basics
    • commented on "Stargate SG-1: Cute and Fuzzy (Improved version)" kata
    • 6 months ago

    fixed, thanx

  • Custom User Avatar
    • hrafov
    • commented on "Stargate SG-1: Cute and Fuzzy (Improved version)" kata
    • 6 months ago

    Sorry, may be typo in description - not "euclidiean", but "euclidean". With all my respect.

  • Custom User Avatar
    • hrafov
    • commented on "Graph Operations, part 2: Your distance from a colleague" kata
    • 10 months ago

    "Efficiency is not a key point of this part of the series" - but I have time out - 16s and so many random tests(
    I am not complain!)

  • Custom User Avatar
    • hrafov
    • commented on "Graph Operations, part 1: find neighbours of a vertex" kata
    • 11 months ago

    Strange, 6 points for so easy task, as I see

  • Custom User Avatar
    • hrafov
    • commented on "Tinder for Programmers" java solution
    • 12 months ago

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar
    • hrafov
    • commented on "Dashatize it" kata
    • 12 months ago

    for Java, I change parameter in function from int to long. There is a test where num = -2147483648

  • Custom User Avatar
    • hrafov
    • commented on "Esolang Interpreters #4 - Boolfuck Interpreter" kata
    • 12 months ago

    Nice Kata. I solved this kata only when read about
    "Little-endian" and "Big-endian".

  • Custom User Avatar
    • hrafov
    • commented on "Cryptography #1 - Viva Cesare" kata
    • 16 months ago

    Yes, this is the point! Thats why in IT companies Business analysts are working hard.

  • Custom User Avatar
    • cwps
    • commented on "The alphabet product" kata
    • 16 months ago

    this also get pass.

  • Custom User Avatar
    • ejini战神
    • resolved a suggestion on "The alphabet product" kata
    • 16 months ago

    Approved

  • Loading more items...
  • © 2025 Codewars
  • About
  • API
  • Blog
  • Privacy
  • Terms
  • Code of Conduct
  • Contact

Confirm

  • Cancel
  • Confirm

Collect: undefined

Loading collection data...