-
Notifications
You must be signed in to change notification settings - Fork 3
/
1268-search-suggestions-system.rb
67 lines (53 loc) · 2.49 KB
/
1268-search-suggestions-system.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# frozen_string_literal: true
# 1268. Search Suggestions System
# https://leetcode.com/problems/search-suggestions-system
# Medium
=begin
You are given an array of strings products and a string searchWord.
Design a system that suggests at most three product names from products after each character of searchWord is typed. Suggested products should have common prefix with searchWord. If there are more than three products with a common prefix return the three lexicographically minimums products.
Return a list of lists of the suggested products after each character of searchWord is typed.
Example 1:
Input: products = ["mobile","mouse","moneypot","monitor","mousepad"], searchWord = "mouse"
Output: [["mobile","moneypot","monitor"],["mobile","moneypot","monitor"],["mouse","mousepad"],["mouse","mousepad"],["mouse","mousepad"]]
Explanation: products sorted lexicographically = ["mobile","moneypot","monitor","mouse","mousepad"].
After typing m and mo all products match and we show user ["mobile","moneypot","monitor"].
After typing mou, mous and mouse the system suggests ["mouse","mousepad"].
Example 2:
Input: products = ["havana"], searchWord = "havana"
Output: [["havana"],["havana"],["havana"],["havana"],["havana"],["havana"]]
Explanation: The only word "havana" will be always suggested while typing the search word.
Constraints:
1 <= products.length <= 1000
1 <= products[i].length <= 3000
1 <= sum(products[i].length) <= 2 * 104
All the strings of products are unique.
products[i] consists of lowercase English letters.
1 <= searchWord.length <= 1000
searchWord consists of lowercase English letters.
=end
# @param {String[]} products
# @param {String} search_word
# @return {String[][]}
def suggested_products(products, search_word)
products = products.sort!
result = []
search_word.length.times do |i|
sub_str = search_word[0..i]
temp = []
products.each do |word|
temp << word if word.start_with?(sub_str)
end
result << temp[0...3]
end
result
end
# ********************#
# TEST #
# ********************#
require "test/unit"
class Test_suggested_products < Test::Unit::TestCase
def test_
assert_equal [["mobile", "moneypot", "monitor"], ["mobile", "moneypot", "monitor"], ["mouse", "mousepad"], ["mouse", "mousepad"], ["mouse", "mousepad"]], suggested_products(["mobile", "mouse", "moneypot", "monitor", "mousepad"], "mouse")
assert_equal [["havana"], ["havana"], ["havana"], ["havana"], ["havana"], ["havana"]], suggested_products(["havana"], "havana")
end
end