Skip to content
View caseploeg's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report caseploeg

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
caseploeg/README.md

Sup Y'all

Pinned Loading

  1. factorio-cli factorio-cli Public

    Simulate 10 hours of gameplay in < 1 minute on the command line.

    Python 16 1

  2. clox clox Public

    An implementation of the Clox VM compiler based on https://craftinginterpreters.com/

    C

  3. raytrace raytrace Public

    raytracer

    C++

  4. chess chess Public

    C

  5. binsearch() binsearch()
    1
    #!/usr/bin/env python3
    2
    
                  
    3
    nums = sorted([int(x) for x in input().split()])
    4
    
                  
    5
    def search(x):
  6. dijkstra dijkstra
    1
    import sys
    2
    import heapq
    3
    from collections import defaultdict
    4
    
                  
    5
    v,e = sys.stdin.readline().strip().split()