A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number ...
分类:
其他好文 时间:
2021-02-01 12:26:52
阅读次数:
0
最近在看java核心技术,里面有实现repeat方法的代码,用到lambda表达式和Runable接口。 lambda表达式实际上就是传入函数,这样就不用自己写一个实例来实现接口,挺有意思的。 public class learning { public static void main(Strin ...
分类:
编程语言 时间:
2021-01-26 12:01:37
阅读次数:
0
for (( i=0; i<10; ++i)); do [ -e filename ] && break sleep 10 done ...
分类:
其他好文 时间:
2021-01-21 10:41:13
阅读次数:
0
1 <html> 2 <!--声明式:不能显示--> 3 <head> 4 <!--设置网页编码--> 5 <meta charset="utf-8"/> 6 <!--关键词:是否能被搜索引擎搜到--> 7 <meta name ="keywords" content="学习html"/> 8 <! ...
分类:
其他好文 时间:
2021-01-18 11:32:53
阅读次数:
0
1, .btnDivL .L1 { background-size: 100% 100%; background-position: center; background-repeat: no-repeat; background-image: url('../icon/L1.png'); /* 简 ...
分类:
Web程序 时间:
2021-01-15 12:16:11
阅读次数:
0
在CSS2.1里,background属性的简写方式包含五种属性值,从CSS3开始,又增加了3个新的属性值,加起来一共8个。 CSS2.1 background-color 使用的背景颜色。 background-image 使用的背景图像。 background-repeat 如何重复背景图像。 ...
分类:
其他好文 时间:
2021-01-07 12:27:40
阅读次数:
0
xml <Page x:Class="MyApp.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/ ...
分类:
其他好文 时间:
2021-01-05 11:34:25
阅读次数:
0
兼容 IE 浏览器常见兼容问题 兼容问题 ie中图片边框问题 图片放在a标签中 img { border:none } ie8以下浏览器中背景复合属性的写法问题 .bg { background:url("./images/bg.jpg")no-repeat center } //解决方案:在url ...
分类:
Web程序 时间:
2020-12-28 11:03:28
阅读次数:
0
css background属性连写 依次的顺序为: background:color img_url repeat position / size 颜色, 地址, 平铺, 位置/size ...
分类:
其他好文 时间:
2020-12-18 12:25:39
阅读次数:
3
x = torch.tensor([0, 1, 2, 3]).float().view(4, 1)def test_assign(x): # 赋值操作 x_expand = x.expand(-1, 3) x_repeat = x.repeat(1, 3) x_expand[:, 1] = torc ...
分类:
其他好文 时间:
2020-12-16 12:40:47
阅读次数:
2