摘要: 安装过anaconda之后(要把安装目录下的scripts文件夹添加到环境变量path中哦~)请创建一个python3.6的环境,如果已经创建了额其他版本的python环境也没有关系只需要运行cmd脚本: conda create -n py36 python=3.6 env_name 就可以创建环 阅读全文
posted @ 2020-04-10 18:16 LceOmlet 阅读(136) 评论(0) 推荐(0)
摘要: 题目描述特别简洁: 先贴代码: class Solution { public : bool isMatch(string s ,string p){ int dp[100][100] = {0}; s.insert(0,1,'@');p.insert(0,1,'@'); //为了将空字符考虑在内, 阅读全文
posted @ 2020-04-04 17:17 LceOmlet 阅读(150) 评论(0) 推荐(0)
摘要: 先贴个big dataset不能通过的代码,过后补一个能过的: #include<bits/stdc++.h> #define INF 9223372036854775807 int main() { using namespace std; int T; cin >>T; int co = 1; 阅读全文
posted @ 2020-03-18 16:45 LceOmlet 阅读(133) 评论(0) 推荐(0)
摘要: 整理一些 ks 的题目和考点。 一、Number Guesing 作为interactIve问题,形式还是蛮新颖的,需要使用离线jud,在py cmd上运行代码 python interactive_runner.py python testing_tool.py 0 -- ./my_binary 阅读全文
posted @ 2020-02-17 00:07 LceOmlet 阅读(158) 评论(0) 推荐(0)