码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
43. 字符串相乘
给定两个以字符串形式表示的非负整数 num1 和 num2,返回 num1 和 num2 的乘积,它们的乘积也表示为字符串形式。 示例 1: 输入: num1 = "2", num2 = "3"输出: "6"示例 2: 输入: num1 = "123", num2 = "456"输出: "56088 ...
分类:其他好文   时间:2021-06-20 17:54:31    阅读次数:0
Luogu P2825 [HEOI2016/TJOI2016]游戏
题链 分析 如果没有硬石头,显然裸的二分图匹配 加上硬石子,相当于分段后跑二分图匹配即可 #include<bits/stdc++.h> #define pb push_back using namespace std; const int N=105,M=10005; int n,m,id1[N] ...
分类:其他好文   时间:2021-06-20 17:41:41    阅读次数:0
Codeforces Round #726 (Div. 2)
#include <bits/stdc++.h> using namespace std; #define rep(i,a,b) for(int i=a;i<b;i++) #define all(x) x.begin(),x.end() #define pb(x) push_back(x) #def ...
分类:其他好文   时间:2021-06-19 19:16:51    阅读次数:0
空间四点体积
https://ac.nowcoder.com/acm/contest/11212/E #include<bits/stdc++.h> using namespace std; // define a point class to store a point class Point { public ...
分类:其他好文   时间:2021-06-19 18:50:57    阅读次数:0
解决mysql:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO/YES)
一、问题 有时候我们登录Mysql输入密码的时候,会出现这种情况 mysql -u root -p Enter Password > '密码' 错误:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using passwo ...
分类:数据库   时间:2021-06-18 20:10:32    阅读次数:0
【Roslyn C#】Runtime环境Unity读取字符串代码
Roslyn C# 下载地址:https://files-cdn.cnblogs.com/files/sanyejun/RoslynC_RuntimeCompiler.zip 使用示例 using System.Collections; using System.Collections.Generi ...
分类:编程语言   时间:2021-06-18 19:54:54    阅读次数:0
Http请求
using System; using System.Net.Http; using System.Net.Http.Json; using System.Threading.Tasks; namespace ConsoleApp1 { class Program { static async Ta ...
分类:Web程序   时间:2021-06-18 19:08:41    阅读次数:0
C# 检查硬盘分区是ssd还是hdd
C# detect driver ssd/hdd 来自github的代码,略做了一丢丢修改。 using Microsoft.Win32.SafeHandles; using System; using System.Collections.Generic; using System.Compone ...
分类:Windows程序   时间:2021-06-17 17:07:02    阅读次数:0
ResizeObserver - loop limit exceeded
About two months ago we started using Rollbar to notify us of various errors in our Web App. Ever since then we have been getting the occasional error ...
分类:其他好文   时间:2021-06-17 16:44:39    阅读次数:0
订阅发布机制
订阅发布机制 github地址: https://github.com/mroderick/PubSubJS import PubSub from 'pubsub-js' // or when using CommonJS const PubSub = require('pubsub-js'); / ...
分类:其他好文   时间:2021-06-17 16:36:50    阅读次数:0
53562条   上一页 1 ... 3 4 5 6 7 ... 5357 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!