Skip to content
View VarunVats9's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report VarunVats9

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

VarunVats9's github stats

Pinned Loading

  1. thanos thanos Public

    Forked from thanos-io/thanos

    Highly available Prometheus setup with long term storage capabilities. CNCF Sandbox project.

    Go 1

  2. ConsistentHashing.java ConsistentHashing.java
    1
    import java.util.SortedMap;
    2
    import java.util.TreeMap;
    3
    
                  
    4
    public class ConsistentHashing {
    5
    
                  
  3. DoublyLinkedList.java DoublyLinkedList.java
    1
    public class DoublyLinkedList {
    2
    
                  
    3
        private int size = 0;
    4
    
                  
    5
        private Node last, first;