Skip to content

Instantly share code, notes, and snippets.

View mrzasa's full-sized avatar

Maciek Rząsa mrzasa

  • Toptal
  • Rzeszów
View GitHub Profile
@mrzasa
mrzasa / intesection.rb
Last active January 19, 2019 15:03
Find intersection of arrays
# arrays
result = []
# initial data
values = arrays.map{|a| a.next}
while true
maximal_value = values.max
for i 0...values.size do
@mrzasa
mrzasa / Auto-Suggestion.md
Last active February 14, 2019 21:50 — forked from hakee/Auto-Suggestion
How Google Won User's Heart :: Google Auto-Suggestion/Auto-Completion Algorithm Exposed

How Auto Suggestion Works e.g. How Google Won User's Heart

You've seen search engines suggest queries when you begin typing the first few letters of your search string. This is being done by Duck Duck Go as well as Google (to name a few). This is typically done by maintaining a list of past queries and/or important strings that the search engine thinks are worthy of being suggested to a user that is trying to find something similar. These suggestions are effective only if the search engine spits them out very fast since these should show up on the screen before the user has finished typing what he/she wanted to type. Hence the speed with which these suggestions are made is very critical to the usefulness of this feature.

Let us consider a situation (and a possible way of approaching this problem) in which when a user enters the first few letters of a search query, he/she is presented with some suggestions that have as their prefix, the string that the user has typed. Furthermore, these suggestions shou

@mrzasa
mrzasa / Gemfile
Last active December 12, 2022 12:16
Failure in RSpec aggregate_failures with mocks
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rspec'