class BigInt{ public: vector<int> a; BigInt operator+(const BigInt& b) { BigInt r; int s=max(a.size(),b.a.size()); for(int i=0;i<s;i++) { r.a.push_bac ...
分类:
其他好文 时间:
2021-03-16 11:45:03
阅读次数:
0
在代码中写a.valueOf()和写a是一样的。 valueOf(): 返回参与运算的数组本身。 ...
分类:
编程语言 时间:
2021-03-16 11:42:54
阅读次数:
0
今天正式开始整活儿Colab! Colab自带了OpenJDK,但是如果我为了保证完全的兼容性,可不可以装个Oracle JDK呢?答案是可以! 话不多说,上代码! !sudo add-apt-repository ppa:ts.sch.gr/ppa !sudo apt-get update !su ...
分类:
数据库 时间:
2021-03-15 11:34:28
阅读次数:
0
通过VS Code来实时预览markdown文件的效果,操作如下 新建一个文本文件,然后将其后缀名改成.md 然后用VS Code打开文件 打开命令行,在上菜单栏的view->command palette 或者用快捷键Ctrl+Shift+p 在命令行中输入Markdown: Open Previ ...
分类:
其他好文 时间:
2021-03-15 11:31:18
阅读次数:
0
OpenPYXL是一个用于读/写Excel2010 XLSX/XLSM/XLTX/XLTM文件的python库 安装方式:python:pip install openpyxl 我的是anaconda:打开 anaconda powershell prompt 命令行:conda install o ...
分类:
编程语言 时间:
2021-03-15 11:28:38
阅读次数:
0
BeanFactoryPostProcessor 自定义spring进行注入 import org.springframework.beans.BeansException; import org.springframework.beans.factory.config.BeanFactoryPos ...
分类:
其他好文 时间:
2021-03-15 11:27:52
阅读次数:
0
背景前面在anaconda中使用tensorflow时,在深度学习目标检测的那方面出现了问题:不能导入kerastensorflow版本过低。 首先:打开Anaconda自带的命令提示窗口:然后键入:(注意环境 要先激活tensorflow环境 activate tensorflow)pip ins ...
分类:
其他好文 时间:
2021-03-15 11:25:30
阅读次数:
0
启动/停止 服务 启动服务 net start mysql 停止服务 net stot mysql 查看服务启动状态 window+R -->services.msc -->找到MySQL ...
分类:
数据库 时间:
2021-03-15 11:24:34
阅读次数:
0
https://www.cnblogs.com/yunlongaimeng/p/12558638.html 安装报错: 1.mysqld : 无法将“mysqld”项识别为 cmdlet、函数、脚本文件或可运行程序的名称 将mysqld 改为:.\mysqld 就可以了 ...
分类:
数据库 时间:
2021-03-15 11:23:58
阅读次数:
0
处理了一年的边界问题 #include <bits/stdc++.h> using namespace std; const int N = 2e5 + 10; #define fi first #define se second #define sz(v) ((int)(v).size()) #d ...
分类:
其他好文 时间:
2021-03-15 11:18:36
阅读次数:
0