/* * @lc app=leetcode id=1235 lang=cpp * * [1235] Maximum Profit in Job Scheduling */ // @lc code=start class Solution { public: int jobScheduling(vector<int> &startTime, vector<int> &endTime, vector<int> &profit) { } }; // @lc code=end