class Solution { public: /* * @param A: An integer array * @param queries: The query list * @return: The number of element in the array that are smaller that the given integer */ vector<int> countOfSmallerNumber(vector<int> A, vector<int>…
使用来自不同页面的函数 函数写在util.js页面 function formatTime(date) { var year = date.getFullYear() var month = date.getMonth() + 1 var day = date.getDate() var hour = date.getHours() var minute = date.getMinutes() var second = date.getSeconds() return [year, month,…