Skip to content
View MrMurder's full-sized avatar
🎯
Focusing
🎯
Focusing
  • Kiev, Ukraine

Block or report MrMurder

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
MrMurder/README.md
  • 👋 Hi, I’m @MrMurder
  • 👀 I’m interested in Java, HTML, CSS, JavaScript, Software Testing, SQL
  • 🌱 I’m currently learning SQL and Fundamentals of Software Testing
  • 💞️ I’m looking to collaborate on ...
  • 📫 How to reach me Telegram: @MrMurder, Email: karp.jaroslav@gmail.com

Pinned Loading

  1. Повернуть матрицу на 90 (180, 270) г... Повернуть матрицу на 90 (180, 270) градусов против часовой стрелки
    1
    public class MatrixRotation {
    2
        static void createMatrix(int[][] a) {
    3
            for (int i = 0; i < a.length; i++) {
    4
                for (int j = 0; j < a.length; j++) {
    5
                    System.out.print(a[i][j] + " ");
  2. Book Book
    1
    /*
    2
    Создать классы:
    3
    1 Book: id, Название, Автор (ы), Издательство, Год издания, Количество страниц, Цена, Тип переплета.
    4
    2 Books: ArrayList<Book> books. Позволяет выполнить поиск:
    5
        a)  список книг заданного автора;
  3. ImmutablePoint ImmutablePoint
    1
    /*
    2
    Создать классы:
    3
    1. Point (Immutable): double x, double y. Methods: getters .
    4
    2. Line (Immutable): Point start, Point end. Methods: double getLength( ).
    5
    3. Lines: ArrayList<Line> lines. Methods: void add(Line line), double sumLength( ), Line longestLine( )
  4. encryption-decryption encryption-decryption Public

    Forked from hyperskill/encryption-decryption

    Project: Encryption-Decryption

    Java

  5. tic-tac-toe-with-ai tic-tac-toe-with-ai Public

    Forked from hyperskill/tic-tac-toe-with-ai

    Project: Tic-Tac-Toe with AI

    Java

  6. Case-Converter Case-Converter Public

    The text case converter. Can convert to upper case, lower case, proper case and sentence case. The result is available for download in .txt

    CSS