Created
May 13, 2024 15:33
-
-
Save igavrysh/85fd1d41fda05554106e38c7212c088e to your computer and use it in GitHub Desktop.
Leetcode 857. Minimum Cost to Hire K Workers Attempt#1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
857. Minimum Cost to Hire K Workers | |
https://leetcode.com/problems/minimum-cost-to-hire-k-workers | |
Attempt#1 | |
*/ | |
class Solution { | |
public double mincostToHireWorkers(int[] quality, int[] wage, int k) { | |
return 0.0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment