Skip to content
View VoLKyyyOG's full-sized avatar
🔥
sending it
🔥
sending it
Block or Report

Block or report VoLKyyyOG

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

Pinned

  1. MAST30034_Python MAST30034_Python Public

    Tutorial and Code for MAST30034 Applied Data Science

    Jupyter Notebook 22 100

  2. COMP20008 COMP20008 Public

    My working material for COMP20008 tutorials + rewritten tutorials/labs for 2021s1

    Jupyter Notebook 13 22

  3. Assorted-Issues-Guide Assorted-Issues-Guide Public

    A repository of my answers / solutions to problems that I have solved for industry projects (aka my personal stackoverflow for very very niche problems)

    Jupyter Notebook 3

  4. PySpark-Beginners-Guide PySpark-Beginners-Guide Public

    A beginner's guide to Apache Spark 3.2 (PySpark)

    Jupyter Notebook 5

  5. COMP20003 COMP20003 Public

    WSL2 installation tutorial for Algorithms & Data Structures (COMP20003)

    C 2

  6. MP-Mix Adversarial Search (Python) MP-Mix Adversarial Search (Python)
    1
    def directed_offensive(state, counts, heuristic, max_player, target, min_eval=inf, depth_left=MAX_DEPTH):
    2
        """
    3
        :summary: An algorithm aimed to MINIMISE a target player used in a 3 player
    4
        scenario with no good pruning techniques possible.
    5
        :assumption: all players will wish to maximise themselves (like a typical Max^n algorithm)