Skip to content
View rothhound's full-sized avatar

Highlights

  • Pro

Organizations

@svangel @The-Complete-Guide-to-Rails-Performance @SuperfanLLC @fanlabs
Block or Report

Block or report rothhound

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. data_structure_workshop_BST.rb data_structure_workshop_BST.rb
    1
    class BinarySearchTree
    2
       class Node
    3
         attr_reader :number, :left, :right
    4
    
                  
    5
         def initialize(number)
  2. data_structure_workshop_enumerable_f... data_structure_workshop_enumerable_find.rb
    1
    NUMBER_LIST = (1...9999999).to_a.shuffle
    2
    
                  
    3
    NUMBER_LIST.find { |number| number == 999324 }
  3. data_structure_workshop_recur_vs_mem.rb data_structure_workshop_recur_vs_mem.rb
    1
    require 'benchmark'
    2
    
                  
    3
    def fib_recur(n)
    4
      if n == 0
    5
        return 0
  4. data_structure_workshop_linear_searc... data_structure_workshop_linear_search.rb
    1
    NUMBER_LIST = (1...9999999).to_a.shuffle
    2
    
                  
    3
    def linear_search(array, number)
    4
      array.each do |array_element|
    5
        return true if array_element == number
  5. react-native-keyboard-aware-view react-native-keyboard-aware-view Public

    Forked from VansonLeung/react-native-keyboard-aware-view

    A simple React Native View component that resizes composite children views inside itself when the keyboard appears. You can implement your own ScrollView, ListView, Multiple Views etc... inside the…

    JavaScript