场景: 用户在填写一些行表的数据时,可能会有很多的必输字段,然后需要填写的内容和第一行的内容差不多,所以就会存在在创建的时候就自动默认和第一行的内容相同这样的需求。 还有一种情况,是默认和头上的某个字段取值相同,直接带出的情况 思路 - 1: 行上的数据都是一张行表的数据,可以在界面上整个ids的字 ...
分类:
其他好文 时间:
2020-01-28 15:35:58
阅读次数:
215
You are given coins of different denominations and a total amount of money. Write a function to compute the number of combinations that make up that a ...
分类:
其他好文 时间:
2020-01-24 09:18:30
阅读次数:
75
You are given coins of different denominations and a total amount of money amount. Write a function to compute the fewest number of coins that you nee ...
分类:
其他好文 时间:
2020-01-20 00:24:28
阅读次数:
86
As an emergency rescue team leader of a city, you are given a special map of your country. The map shows several scattered cities connected by some ro ...
分类:
其他好文 时间:
2020-01-16 13:02:01
阅读次数:
85
原题链接在这里:https://leetcode.com/problems/coin-change-2/ 题目: You are given coins of different denominations and a total amount of money. Write a function ...
分类:
其他好文 时间:
2020-01-15 09:55:48
阅读次数:
59
select task_id,state,createymd,from_unixtime(createtime) "创建时间",manager_name,open_state,hosted_amount,hosted_date,hosted_time,hosted, is_deal,deal_amo ...
分类:
其他好文 时间:
2020-01-13 14:30:59
阅读次数:
205
322. Coin Change class Solution { public int coinChange(int[] coins, int amount) { int[] dp = new int[amount + 1]; Arrays.fill(dp, amount + 1); dp[0] ...
分类:
其他好文 时间:
2020-01-12 09:54:40
阅读次数:
57
select语句: 需求背景在一个这样的业务中,需要查询一个表A的记录,其中A表的主要字段有 id , createtime ,amount ,现在要求给定一个数字N,查询按照创建时间顺序排列之后的前 x条记录,这x条记录需要满足sum(amount)>=N并且尽可能的小的条件。其中传入的参数只有N ...
分类:
数据库 时间:
2020-01-10 22:27:59
阅读次数:
116
基础概念 进程创建过程 当一个进程创建一个新的进程,创建进程的进程(父进程)使用名为fork()的系统调用。当fork()被调用的时候,它会为新创建的进程(子进程)获得一个进程描述符,并且设置新的进程ID。复制父进程的进程描述符给子进程。这时候,不会复制父进程的地址空间,而是父子进程使用同样的地址空 ...
分类:
系统相关 时间:
2020-01-04 22:45:58
阅读次数:
117
一. 问题描述 给定不同面额的硬币 coins 和一个总金额 amount。编写一个函数来计算可以凑成总金额所需的最少的硬币个数。如果没有任何一种硬币组合能组成总金额,返回 -1。 示例 1: 输入: coins = [1, 2, 5], amount = 11 输出: 3 解释: 11 = 5 + ...
分类:
其他好文 时间:
2019-12-31 14:10:30
阅读次数:
59