Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

please answer in Python please can someone answer this urgently 2. categorySuggestions Every project on Thumbtack belongs to a category. Each set of two categories

please answer in Python image text in transcribed
image text in transcribed
image text in transcribed
please can someone answer this urgently
2. categorySuggestions Every project on Thumbtack belongs to a category. Each set of two categories has a relevance score from 0 to 1, which represents how relevant they are to each other. A category has a relevance score of 1.0 to itself Cance anet tion House Cleaning Handyan Lec Moving nder 10 mles) La Mawing and Triming Massige Theraiy OP QWERTIYU ASDEOHJKL ZXC VBNM 123 ece Every time a project that belongs to a user is completed, the Thumbtack search bar updates to display the k most relevant category suggestions for that user. These top categories are chosen by first sorting all the categories that are relevant to at least one of the already created projects by relevance. Then, in the case that their relevance is equal, they should be sorted by category name. If the same category is relevant to 2 or more projects, it should be included only once with the maximum relevance score. If there are fewer than k total relevant projects, the suggestions list will be shorter than k. You have a relevance graph of all the Thumbtack categories, represented as an array of strings of comma-separated words. For each string in categories, the first two elements are the categories being compared and the third is their relevance score. You are also given an array of the categories of the projects that a particular user wants to create. For example: "House Painting, Interior Painting,0.8" means that House Painting and Interior Painting have a relevance score of 0.8 (.e. highly relevant) and "Handyman, Massage Therapy,0.1" means that Handyman and Massage Therapy have a relevance score of 0.1 (6.e. barely relevant). Note that if there is no entry for particular pair of categories, it means that their relevance is 0.0 (i.e. they aren't relevant at all and they shouldn't be included in the list of suggestions). Given the relevance graph categories, the list of the user's projects, and the number of category suggestions the user should see in the Thumbtack search bar k, return an array of arrays that represents the state of the search bar suggestions list after each of the projects in projects is created. Example For Example For categories "House Painting, Interior Painting,0.9", "Handyman, Massage Therapy,e.1", "Handyman, House Painting, 0.5", "House Painting, House Cleaning,0.6", "Furniture Assembly, Handynan, 0.8", "Furniture Assembly, Massage Therapy,9.1", "Plumbing Drain Repair, Junk Renoval,0.3" projects ["House Painting", "Handyman"], and k - 3, the output should be categorySuggestions (categories, projects, k) [["House Painting", "Interior Painting", "House Cleaning"), ["Handyman", "House Painting", "Interior Painting"]]. After the first project House Painting is completed, the most relevant suggestions are (in order of their relevance): Category Relevance House Painting 1.0 Interior Painting 0.9 House Cleaning 0.6 Handyman 0.5 After the second project is completed, the most relevant suggestions are: Category Relevance Handyman 1.0 House Painting 1.0 Interior Painting 0.9 Furniture Assembly 0.8 House Cleaning 0.6 Massage Therapy 0.1 Input/Output (input) array.string categories Category relevancies given in the format , ccategory2 name>, , relevance is a float number in the range (0,1] and has no more than 6 decimal places after the point. It is guaranteed that there are no duplicate entries with the same category pairs (.e. with will be distinct). Input/Output linput) array.string categories Category relevancies given in the format , ccategory2 nane>, . relevance is a float number in the range (0,1) bnd has no more than 6 decimal places after the point. It is guaranteed that there are no duplicate entries with the same category pairs (.e. Ccategoryl nane> with will be distinct). Category names can only consists of spaces and English letters. Guaranteed constraints Os categories.length s 1000, 5s categories[1].length s 50. (e, linput] array.string projects The categories to which the user's projects belong. Guaranteed constraints es projects.length s 1000, 1 s projects[1].Length s 30. linput) integer k The number of category suggestions that should be shown in the user's search bar. Guaranteed constraints: Osks 50. loutput) array.array.string o Return the state of the search bar suggestions list after each of the projects in projects is created. 2. categorySuggestions Every project on Thumbtack belongs to a category. Each set of two categories has a relevance score from 0 to 1, which represents how relevant they are to each other. A category has a relevance score of 1.0 to itself Cance anet tion House Cleaning Handyan Lec Moving nder 10 mles) La Mawing and Triming Massige Theraiy OP QWERTIYU ASDEOHJKL ZXC VBNM 123 ece Every time a project that belongs to a user is completed, the Thumbtack search bar updates to display the k most relevant category suggestions for that user. These top categories are chosen by first sorting all the categories that are relevant to at least one of the already created projects by relevance. Then, in the case that their relevance is equal, they should be sorted by category name. If the same category is relevant to 2 or more projects, it should be included only once with the maximum relevance score. If there are fewer than k total relevant projects, the suggestions list will be shorter than k. You have a relevance graph of all the Thumbtack categories, represented as an array of strings of comma-separated words. For each string in categories, the first two elements are the categories being compared and the third is their relevance score. You are also given an array of the categories of the projects that a particular user wants to create. For example: "House Painting, Interior Painting,0.8" means that House Painting and Interior Painting have a relevance score of 0.8 (.e. highly relevant) and "Handyman, Massage Therapy,0.1" means that Handyman and Massage Therapy have a relevance score of 0.1 (6.e. barely relevant). Note that if there is no entry for particular pair of categories, it means that their relevance is 0.0 (i.e. they aren't relevant at all and they shouldn't be included in the list of suggestions). Given the relevance graph categories, the list of the user's projects, and the number of category suggestions the user should see in the Thumbtack search bar k, return an array of arrays that represents the state of the search bar suggestions list after each of the projects in projects is created. Example For Example For categories "House Painting, Interior Painting,0.9", "Handyman, Massage Therapy,e.1", "Handyman, House Painting, 0.5", "House Painting, House Cleaning,0.6", "Furniture Assembly, Handynan, 0.8", "Furniture Assembly, Massage Therapy,9.1", "Plumbing Drain Repair, Junk Renoval,0.3" projects ["House Painting", "Handyman"], and k - 3, the output should be categorySuggestions (categories, projects, k) [["House Painting", "Interior Painting", "House Cleaning"), ["Handyman", "House Painting", "Interior Painting"]]. After the first project House Painting is completed, the most relevant suggestions are (in order of their relevance): Category Relevance House Painting 1.0 Interior Painting 0.9 House Cleaning 0.6 Handyman 0.5 After the second project is completed, the most relevant suggestions are: Category Relevance Handyman 1.0 House Painting 1.0 Interior Painting 0.9 Furniture Assembly 0.8 House Cleaning 0.6 Massage Therapy 0.1 Input/Output (input) array.string categories Category relevancies given in the format , ccategory2 name>, , relevance is a float number in the range (0,1] and has no more than 6 decimal places after the point. It is guaranteed that there are no duplicate entries with the same category pairs (.e. with will be distinct). Input/Output linput) array.string categories Category relevancies given in the format , ccategory2 nane>, . relevance is a float number in the range (0,1) bnd has no more than 6 decimal places after the point. It is guaranteed that there are no duplicate entries with the same category pairs (.e. Ccategoryl nane> with will be distinct). Category names can only consists of spaces and English letters. Guaranteed constraints Os categories.length s 1000, 5s categories[1].length s 50. (e, linput] array.string projects The categories to which the user's projects belong. Guaranteed constraints es projects.length s 1000, 1 s projects[1].Length s 30. linput) integer k The number of category suggestions that should be shown in the user's search bar. Guaranteed constraints: Osks 50. loutput) array.array.string o Return the state of the search bar suggestions list after each of the projects in projects is created

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advanced Database Systems

Authors: Carlo Zaniolo, Stefano Ceri, Christos Faloutsos, Richard T. Snodgrass, V.S. Subrahmanian, Roberto Zicari

1st Edition

155860443X, 978-1558604438

More Books

Students also viewed these Databases questions