Skip to content
View arvind02's full-sized avatar
Block or Report

Block or report arvind02

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

  1. magick_filter magick_filter Public

    Apply some basic filters and frame on your photo, command line

    Ruby 5 1

  2. data_structure data_structure Public

    Data Structure Coding with Ruby

    Ruby

  3. CodingInterviews CodingInterviews Public

    Forked from Sindurav/CodingInterviews

    This repository contains coding interviews that I have encountered in company interviews

    Python

  4. Meta_Programming Meta_Programming Public

    Meta Programming Concepts in Ruby

  5. Algorithms-and-Data-Structures-in-Ruby Algorithms-and-Data-Structures-in-Ruby Public

    Forked from kumar91gopi/Algorithms-and-Data-Structures-in-Ruby

    Ruby implementation of Algorithms,Data-structures and programming challenges

    Ruby

  6. ruby maximum hourglass sum ruby maximum hourglass sum
    1
    def sum_hour_glass(c, r, two_d_array)
    2
      top = two_d_array[r][c..c+2].inject(:+)
    3
      center = two_d_array[r +1][c+1]
    4
      bottom = two_d_array[r+2][c..c+2].inject(:+) 
    5
      top + center + bottom