Skip to content
View singhnitin25's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report singhnitin25

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. thoughtbot/shoulda-matchers thoughtbot/shoulda-matchers Public

    Simple one-liner tests for common Rails functionality

    Ruby 3.5k 911

  2. Algorithms Algorithms
    1
    class Searching
    2
    
                  
    3
      attr_reader :array, :number
    4
    
                  
    5
      # Binary search works on only sorted array
  3. Jump Search:- The time complexity of... Jump Search:- The time complexity of Jump Search is between Linear Search ( ( O(n) ) and Binary Search ( O (Log n) ).
    1
    class JumpSearch
    2
    
                  
    3
      attr_reader :array, :number
    4
    
                  
    5
      def initialize(array, number)
  4. AlgosAndDatastructures AlgosAndDatastructures Public

    Ruby implementation different algorithms and datastructures

    Ruby

  5. MyPythonPractice MyPythonPractice Public

    My python practice examples

    Python

  6. shoulda-matchers shoulda-matchers Public

    Forked from thoughtbot/shoulda-matchers

    Simple one-liner tests for common Rails functionality

    Ruby