Skip to content
View a3rzi's full-sized avatar
Block or Report

Block or report a3rzi

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Popular repositories Loading

  1. Calculator-in-Java-Using-Swing Calculator-in-Java-Using-Swing Public

    Java

  2. Quarter-of-the-year Quarter-of-the-year Public

    Given a month as an integer from 1 to 12, return to which quarter of the year it belongs as an integer number.

    Java

  3. Total-amount-of-points Total-amount-of-points Public

    Our team's match results are recorded in a collection of strings. Each match is represented by a string in the format "x:y", where x is our team's score and y is our opponents score. We need to wri…

    Java

  4. Get-the-Middle-Character Get-the-Middle-Character Public

    You are going to be given a word. Your job is to return the middle character of the word. If the word's length is odd, return the middle character. If the word's length is even, return the middle 2…

    Java

  5. Vowel-Count Vowel-Count Public

    Return the number (count) of vowels in the given string. We will consider a, e, i, o, u as vowels for this Kata (but not y). The input string will only consist of lower case letters and/or spaces.

    Java

  6. Square-Every-Digit Square-Every-Digit Public

    Welcome. In this kata, you are asked to square every digit of a number and concatenate them. For example: An input of 765 will/should return 493625 because 72 is 49, 62 is 36, and 52 is 25. (49-36-…

    Java