Skip to content
View cfc1020's full-sized avatar

Block or report cfc1020

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. url_shortener url_shortener Public

    Example of clean OOP architecture

    Ruby 1

  2. lru_cache lru_cache Public

    LRU Cache implementation using different storages(including implemented custom ones)

    Ruby 1

  3. Finding the k-th largest element fro... Finding the k-th largest element from the array effectively and simply as well
    1
    require 'benchmark'
    2
    
                  
    3
    examples = []
    4
    
                  
    5
    res1 = []
  4. CGTrader-Level-System CGTrader-Level-System Public

    Ruby 1

  5. ProjectADS ProjectADS Public

    This is a simple project for publication ads.

    JavaScript 1

  6. ruby look and say sequence 1 11 21 1211 ruby look and say sequence 1 11 21 1211
    1
    class String
    2
      def look_and_say_regexp
    3
        self.gsub(/(.)\1*/) { |match| "#{match.size}#{match[0]}" }
    4
      end
    5