Skip to content
View HuzaifaSaifuddin's full-sized avatar
  • Bengaluru, Karnataka

Block or report HuzaifaSaifuddin

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. date_breakup date_breakup Public

    A Date Breakup Gem

    Ruby 2

  2. blackjack blackjack Public

    Single Player BlackJack Game in Ruby Language

    Ruby

  3. pulsecore-py pulsecore-py Public

    Multi-tenant Hospital Management System (Django) — appointment management module

    Python

  4. completed-ruby-koans completed-ruby-koans Public

    Ruby

  5. Reverse an Integer in Ruby using Mat... Reverse an Integer in Ruby using Mathematics
    1
    # Monkey-Patching the Integer Class
    2
    class Integer
    3
      def reverse
    4
        x = self.abs
    5
        y = 0
  6. parking_lot.rb parking_lot.rb
    1
    # frozen_string_literal: true
    2
    
                  
    3
    # Design a parking lot system where:
    4
    # - I can define set number of parking slots for the type of vehicle (say, 20 slots for Cars, 40 slots for motor bikes).
    5
    # - I can define hourly rate for the types of vehicle we have (say, 30Rs / hour for car, 15Rs / hour for motor bikes).