Question You are given n tasks, each taking a certain number of hours to complete. Tasks may depend on other tasks - a task cannot start until...
Input: Number(s) Output: Integer
codingHardgraph#1
1. Graph — Find shortest path in a stock transaction graph
Background: Goldman Sachs often deals with stock transactions, where understanding the pathways between stocks can lead to optimizations in trading strategies. This problem is essential for developing applications that recommend stock trades based on historical trends. Problem statement: You are tasked with creating a function that finds the shortest path between two stocks in a weighted graph. Each node represents a stock, and edges represent transaction potentials with weights indicating transaction costs. Given a directed graph, return the shortest path from stock start to stock end. If there is no path, return -1. Function/class signature:
Explanation: There is no path from A to C in this circular transaction graph.
Constraints:
The number of stocks (nodes) is between 1 and 1000.
The number of transactions (edges) can be at most 10,000.
Stocks are represented by uppercase letters A-Z.
Weights of edges are positive integers up to 1000.
codingHardgraph#2
2. [Graph] — Shortest Path in a Stock Trading Algorithm
Background: Goldman Sachs operates in a fast-paced trading environment where decisions are based on real-time data and market conditions. Efficiently determining the shortest path in stock transactions can lead to reduced latency and improved trading strategies. Problem statement: You are given a directed graph where each node represents a stock and the edges represent the transaction costs between stocks. Your task is to find the minimum transaction cost to move from one stock to another. Implement a function min_transaction_cost that takes in the following parameters:
stock_count: int: Number of stocks (nodes in the graph)
edges: List[Tuple[int, int, int]]: A list of tuples, where each tuple represents a directed edge in the form (source, destination, cost).
start: int: Starting stock.
end: int: Target stock.
Returns the minimum transaction cost to get from start to end. If no path exists, return -1. Function/class signature: