码迷,mamicode.com
首页 > 2020年05月10日 > 全部分享
__iter__和__next__实现迭代器协议
__iter__()将对象转换为可迭代对象,__next__()返回实现迭代 #_*_coding:utf-8_*_ __author__ = 'Linhaifeng' class Foo: def __init__(self,x): self.x=x def __iter__(self): ret ...
分类:其他好文   时间:2020-05-10 19:32:08    阅读次数:63
border-radius 两个值原理
假如有两个值,如:border-top-left-radius:50px 100px,表示水平半径为50px,垂直半径为100px的椭圆,如图: 1个值:border-radius:5px/5px,那么其水平半径和垂直半径相等,故为圆,如图2个值:border-radius:5px/5px 10px ...
分类:其他好文   时间:2020-05-10 19:31:47    阅读次数:104
leetcode 前200题list-python-未完待续~
最近刷leetcode前200题,python解题如下。参考了leetcode题解区各位大神解答,感谢各位大神。由于大部分题解都是参考powcai大神,在此特别感谢泡菜大神~ powcai: https://leetcode cn.com/u/powcai/ 题解列表 1. "两数之和" 2. "两 ...
分类:编程语言   时间:2020-05-10 19:31:25    阅读次数:67
微信小程序:userInfoReadyCallback介绍-小程序获取用户信息无法得到问题
app.js中的userInfoReadyCallback方法,定义在page.js中,也是够了 (因为网络获取数据是异步的,保证数据传递) app.js // 获取用户信息 wx.getSetting({ success: res => { if (res.authSetting['scope.u ...
分类:微信   时间:2020-05-10 19:31:05    阅读次数:231
net core WebApi——缓存神器Redis
目录 前言 Redis 使用 RedisUtil 测试 小结 前言 中秋过完不知不觉都已经快两周没动这个工程了,最近业务需要总算开始搞后台云服务了,果断直接net core搞起,在做的中间遇到了不少问题,这个后续会一点点列出来包括解决方法,今天就先把之前挖的坑填一个。 Redis 之前在缓存那篇提到 ...
分类:Windows程序   时间:2020-05-10 19:30:49    阅读次数:82
1443. Minimum Time to Collect All Apples in a Tree
Given an undirected tree consisting of n vertices numbered from 0 to n-1, which has some apples in their vertices. You spend 1 second to walk over one ...
分类:移动开发   时间:2020-05-10 19:30:30    阅读次数:71
2020.5.4-ICPC Pacific Northwest Regional Contest 2019
A. Radio Prize All boring tree-shaped lands are alike, while all exciting tree-shaped lands are exciting in their own special ways.What makes Treeland ...
分类:其他好文   时间:2020-05-10 19:29:13    阅读次数:83
NetCore+Dapper WebApi架构搭建(二):底层封装
看下我们上一节搭建的架构,现在开始从事底层的封装 1、首先需要一个实体的接口IEntity 1 namespace Dinner.Dapper 2 { 3 public interface IEntity<TPrimaryKey> 4 { 5 TPrimaryKey Id { get; set; } ...
分类:移动开发   时间:2020-05-10 19:28:53    阅读次数:80
leetcode 二分查找&指针解题
leetcode 4.[寻找两个有序数组的中位数] [寻找两个有序数组的中位数]: https://leetcode cn.com/problems/median of two sorted arrays/ leetcode 9.[回文数] [回文数]: https://leetcode cn.co ...
分类:其他好文   时间:2020-05-10 19:28:15    阅读次数:73
Docker核心基础之容器的文件复制与挂载
从宿主机复制到容器: 从容器复制到宿主机: 宿主机文件夹挂载到容器里: `docker run itd v /root/xdclass/:/home centos:7` ...
分类:其他好文   时间:2020-05-10 19:27:57    阅读次数:64
CSS揭秘之《条纹背景》
先来说说渐变吧 background: linear-gradient(#fb3 20%, #58a 80%); 效果图如下所示:也就是说真正的渐变只出现在容器 60%(从20%到80%) 的高度区域 如果把两个色标合在一起,会怎样呢w3c是这样规定的“如果多个色标具有相同的位置, 它们会产生一个无 ...
分类:Web程序   时间:2020-05-10 19:27:00    阅读次数:84
海工录取分数线
1.数据描述 想了想决定爬一下海工的录取分数线,但是刚开始只能爬出数据,没有办法转化为列表形式,于是在网上找了很多方法,也参考了一下同学的,终于将其转化为列表形式得了。 for tr in data: lt=[] lg=[] ltd=tr.find_all('td') if len(ltd)==0: ...
分类:其他好文   时间:2020-05-10 19:26:39    阅读次数:67
postgresql的安装与基础语法
查看用户 postgres-# \du 角色名称 | 属性 | 成员属于 + + postgres | 超级用户, 建立角色, 建立 DB, 复制, 绕过RLS | {} 查看所有数据库 postgres-# \l 名称 | 拥有者 | 字元编码 | 校对规则 | Ctype | 存取权限 + + ...
分类:数据库   时间:2020-05-10 19:26:20    阅读次数:85
url地址后面问号什么用途
`https://blog.csdn.net/qq_26669719/article/details/88597682?utm_medium=distribute.pc_relevant.none task blog BlogCommendFromBaidu 2&depth_1 utm_source ...
分类:Web程序   时间:2020-05-10 19:25:55    阅读次数:67
CSS揭秘之《边框内圆角》
现在我们要实现一个边框内圆角的效果,效果图如下所示: 第一反应肯定是用两个标签来实现,但是如果只用一层标签的话,可以实现么我们首次的构想可能是这样子的 div { outline: .6em solid green; max-width: 10em; border-radius: .8em; pad ...
分类:Web程序   时间:2020-05-10 19:25:38    阅读次数:71
使用次梯度法求解lasso
Using subgradient method to solve lasso problem The problem is to solve: $$\underset{\beta}{\operatorname{minimize}}\left\{\frac{1}{2 N} \sum_{i=1}^{N ...
分类:其他好文   时间:2020-05-10 19:25:21    阅读次数:167
LeetCode(Weekly Contest 188)题解
0. 前言 中文版地址:https://leetcode-cn.com/contest/weekly-contest-188/ 英文版地址:https://leetcode.com/contest/weekly-contest-188/ 1. 题解 1.1 5404. 用栈操作构建数组(1441.  ...
分类:其他好文   时间:2020-05-10 19:25:03    阅读次数:60
1091条   上一页 1 ... 15 16 17 18 19 20 21 ... 65 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!