[ { "m": "01", "v": 0.019, "dq": 0, "ts": null, "pf": null, "time": "2021-03-28 00:00:00", "stringTime": "2021-03-28", "flag": null }, { "m": "01", "v ...
分类:
编程语言 时间:
2021-04-15 12:00:42
阅读次数:
0
http://codeforces.com/contest/1513/problem/C dp $f[i][j]:$表示当前数位上为i(0~9), 加法次数为j最终形成的数位. f[i][j] = f[i - 1][j + 1]; f[9][j] = f[1][j + 1] + f[0][j + 1 ...
分类:
其他好文 时间:
2021-04-13 12:19:52
阅读次数:
0
package stream import ( "log" "reflect" "sort" ) type ( // a Stream is where one can drain data from Stream chan interface{} // buffer stream BufferSt ...
上篇文章讲了UE4安卓互相调用,这篇来看看IOS原生代码和UE4的关系。 plist 上篇文章提到了一个概念:UPL,在IOS代码编写里同样有使用UPL的地方,但对于IOS目前我所见到只是用于更改plist(UE 4.25.1 默认打包会产生下面这样一个 plist 文件info.plist,在一些 ...
分类:
移动开发 时间:
2021-04-13 12:11:01
阅读次数:
0
Mybatis-plus 上 简介 1.什么是Mybatis-plus MyBatis-Plus(简称 MP)是一个 MyBatis的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。 官网:https://baomidou.com/ 愿景 我们的愿景是成为 MyBa ...
分类:
其他好文 时间:
2021-04-13 11:46:14
阅读次数:
0
# async函数创建与运行 async def funcC(): print("A方法需要等待C方法执行完毕") time.sleep(5) print("C方法完毕") # 如果在执行A里面想异步执行其他任务,就异步执行其他任务 asyncio.run(funcC()) async def fu ...
分类:
其他好文 时间:
2021-04-13 11:43:28
阅读次数:
0
生产者 - 消费者(Producer-Consumer),也叫有限缓冲(Bounded-Buffer),是多线程同步的经典问题之一 头文件 #include <condition_variable> #include <iostream> #include <mutex> #include <thr ...
分类:
编程语言 时间:
2021-04-13 11:38:19
阅读次数:
0
234. 回文链表 题目描述: ? 请判断一个链表是否为回文链表。 # Definition for singly-linked list. # class ListNode: # def __init__(self, x): # self.val = x # self.next = None im ...
分类:
其他好文 时间:
2021-04-09 13:34:58
阅读次数:
0
1、什么是hook?react hook是react 16.8推出的方法,能够让函数式组件像类式组件一样拥有state、ref、生命周期等属性。 2、为什么要出现hook?函数式组件是全局当中一个普通函数,在非严格模式下this指向window,但是react内部开启了严格模式,此时this指向un ...
分类:
其他好文 时间:
2021-04-08 13:46:08
阅读次数:
0
The mode is the value in the data set that occurs most frequently. If all of the data values occur only once, or they each occur an equal number of ti ...
分类:
其他好文 时间:
2021-04-08 13:33:00
阅读次数:
0