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

Block or report gordjw

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. doubleblind-server doubleblind-server Public

    Go backend to handle requests from doubleblind-client

    Go

  2. Leetcode 2058 - Medium - Find the M... Leetcode 2058 - Medium - Find the Minimum and Maximum Number of Nodes Between Critical Points
    1
    """
    2
    We can optimise by recognising that:
    3
    - max_dist will always be (last - first)
    4
    - min_dist will always be from one pair of adjacent critical points, so we can calculate it as we run through the list
    5