Skip to content

Instantly share code, notes, and snippets.

@igavrysh
Created May 13, 2024 15:33
Show Gist options
  • Save igavrysh/85fd1d41fda05554106e38c7212c088e to your computer and use it in GitHub Desktop.
Save igavrysh/85fd1d41fda05554106e38c7212c088e to your computer and use it in GitHub Desktop.
Leetcode 857. Minimum Cost to Hire K Workers Attempt#1
/*
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