#include<bits/stdc++.h>#define ll long long#define speed_up ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);using namespace std;const ll nl=1e18;/* ...
分类:
其他好文 时间:
2020-06-04 19:38:52
阅读次数:
55
Given a root node reference of a BST and a key, delete the node with the given key in the BST. Return the root node reference (possibly updated) of th ...
分类:
其他好文 时间:
2020-06-04 11:56:26
阅读次数:
48
There are 2N people a company is planning to interview. The cost of flying the i-th person to city A is costs[i][0], and the cost of flying the i-th p ...
分类:
其他好文 时间:
2020-06-03 23:34:27
阅读次数:
72
在finetune Chinese GPT2的时候遇到如上错误,错误原因index越界,原始代码中给定的输入长度是1024,但是我使用模型可接受的输入长度是512,把输入长度都改为512,错误解决 ...
分类:
其他好文 时间:
2020-06-03 15:29:38
阅读次数:
310
1065 A+B and C (64bit) (20分) Given three integers A, B and C in [?], you are supposed to tell whether A+B>C. Input Specification: The first line of th ...
分类:
其他好文 时间:
2020-06-03 13:53:54
阅读次数:
74
<table> <caption>表格标题</caption> <thead> <tr> <th>表头1</th> <th>表头2</th> <th>表头3</th> </tr> </thead> <tbody> <tr> <td>数据1</td> <td>数据2</td> <td>数据3</td> ...
分类:
其他好文 时间:
2020-06-02 14:57:05
阅读次数:
72
th:value="${#dates.format(后端传递的时间,‘yyyy-MM-dd HH:mm:ss’)}" ...
分类:
其他好文 时间:
2020-06-02 09:48:24
阅读次数:
62
Ashish has a tree consisting of nn nodes numbered 11 to nn rooted at node 11 . The ii -th node in the tree has a cost aiai , and binary digit bibi is ...
分类:
其他好文 时间:
2020-06-01 23:55:59
阅读次数:
100
1. <table>标签 表格容器,尽量避免用属性书写样式,而是用CSS来表达 border: 数字 //表格边框宽度 2. <caption>标签 表格的标题,一般出现在表格上方,可通过CSS更改方向 3. <tr>标签 表示表格的一行。 4. <th>标签 表头的一个单元,与<tr>相比,一般做 ...
分类:
Web程序 时间:
2020-06-01 20:45:04
阅读次数:
68
Given the array candies and the integer extraCandies, where candies[i] represents the number of candies that the ith kid has. For each kid check if th ...
分类:
其他好文 时间:
2020-06-01 13:35:45
阅读次数:
64