Skip to content
View grysvn's full-sized avatar
:shipit:
beep beep boop
:shipit:
beep beep boop

Block or report grysvn

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 Loading

  1. python-algebra-groups python-algebra-groups Public

    Rough implementation of algebraic groups in python.

    Python 17 7

  2. Get list of permutations of an array Get list of permutations of an array
    1
    func permutations<T>(of array: [T]) -> [[T]] where T: Equatable {
    2
        // Base condition
    3
        if array.count <= 1 {
    4
            return [array]
    5
        }