直接来,1个脚本 using System.Collections; using System.Collections.Generic; using System.Diagnostics; using UnityEditor; using Debug = UnityEngine.Debug; pub ...
分类:
编程语言 时间:
2021-01-05 11:22:10
阅读次数:
0
Given an input string (s) and a pattern (p), implement wildcard pattern matching with support for '?' and '*' where: '?' Matches any single character. ...
分类:
其他好文 时间:
2020-12-29 11:12:41
阅读次数:
0
地址 https://leetcode-cn.com/problems/wildcard-matching/ 给定一个字符串 (s) 和一个字符模式 (p) ,实现一个支持 '?' 和 '*' 的通配符匹配。 '?' 可以匹配任何单个字符。 '*' 可以匹配任意字符串(包括空字符串)。 两个字符串完 ...
分类:
其他好文 时间:
2020-12-22 12:50:42
阅读次数:
0
// 过滤权限filterPremission(list){ var _search = this.searchPremissionVal; if (_search) { //不区分大小写处理 var reg = new RegExp(_search, 'ig') //es6 filter过滤匹配, ...
分类:
其他好文 时间:
2020-12-22 12:35:02
阅读次数:
0
在二维码卡包中,点击某张卡,展示二维码的图片,这张二维码打开的时候,内层的点击事件还会生效,防止误点击,所以在这时要禁止内层的点击事件。 一开始想到的是事件修饰符,试过之后并不能实现,就用js实现了,图片如下 html: 二维码卡包 <div @click="openQrcode(item.card ...
分类:
其他好文 时间:
2020-12-21 11:32:45
阅读次数:
0
原文链接:https://card.weibo.com/article/m/show/id/2309404494800391897318?_wb_client_=1&object_id=1022%3A2309404494800391897318&extparam=lmid--449480039449 ...
分类:
其他好文 时间:
2020-12-17 12:52:02
阅读次数:
2
目录Res BlockResNet18Out of memory # Resnet.py #!/usr/bin/env python # -*- coding:utf-8 -*- import tensorflow as tf from tensorflow import keras from te ...
分类:
Web程序 时间:
2020-12-17 12:26:46
阅读次数:
5
Trick 1.快速乘 解决乘法爆long long 的问题 int mul(int a, int b, int P){//快速乘 int L = a * (b >> 25ll) % P * (1ll << 25) % P; int R = a * (b & ((1ll << 25) - 1)) % ...
分类:
其他好文 时间:
2020-12-14 13:22:19
阅读次数:
3
一.tinymix调用,主要是控制接口,调用到底层的control操作方法:tinymix 0 SPKTinymix.c (external\tinyalsa)int main(int argc, char **argv) mixer = mixer_open(card); snprintf(fn, ...
分类:
其他好文 时间:
2020-12-01 12:12:19
阅读次数:
7
//https://www.researchgate.net/publication/277940984_High-speed_Curve25519_on_8-bit_16-bit_and_32-bit_microcontrollers Synthetically, the advantages o ...
分类:
其他好文 时间:
2020-12-01 12:07:02
阅读次数:
4