码迷,mamicode.com
首页 >  
搜索关键字:turn    ( 27138个结果
vue 模板 template init
<template> <div> </div> </template> <script> export default { name: '模板名称', props: {}, components: {}, data () { return { } }, computed: {}, methods: ... ...
分类:其他好文   时间:2019-12-15 12:39:34    阅读次数:122
睡眠排序
二半夜的有点失眠,来个睡眠排序 -_-|| ...
分类:编程语言   时间:2019-12-15 11:07:48    阅读次数:99
js deepEqual & shallowEqual 小算法实现
1 function deepEqual(x, y) { 2 if (x y) { 3 return true; 4 } else if ((typeof x == "object" && x != null) && (typeof y == "object" && y != null)) { 5 ...
分类:编程语言   时间:2019-12-15 10:42:27    阅读次数:103
golang time json mongodb 时间处理
golang 中解决前端time 输出,后端mongodb中时间存储。 golang package mask import ( "fmt" "time" "go.mongodb.org/mongo driver/bson" "go.mongodb.org/mongo driver/bson/bso ...
分类:数据库   时间:2019-12-15 10:34:56    阅读次数:170
csp模拟题-201903
1.小中大(100分) 2.二十四点(100分) ...
分类:其他好文   时间:2019-12-15 01:12:21    阅读次数:108
LeetCode 5129. 下降路径最小和 II Minimum Falling Path Sum II
地址 https://leetcode-cn.com/contest/biweekly-contest-15/problems/minimum-falling-path-sum-ii/ 题目描述给你一个整数方阵 arr ,定义「非零偏移下降路径」为:从 arr 数组中的每一行选择一个数字,且按顺序选 ...
分类:其他好文   时间:2019-12-15 01:00:24    阅读次数:74
[转帖]springboot2.0配置连接池(hikari、druid)
springboot2.0配置连接池(hikari、druid) 原文链接:https://www.cnblogs.com/blog5277/p/10660689.html 原文作者:博客园--曲高终和寡 *******************如果你看到这一行,说明爬虫在本人还没有发布完成的时候就抓 ...
分类:编程语言   时间:2019-12-15 00:59:10    阅读次数:85
leetcode 15. 3Sum
```javascript function threeSum(nums) { nums.sort((a, b) = a b); var res = []; if (nums.length 0 || nums[nums.length 1] 0 && nums[i] == nums[i 1]) { c ...
分类:其他好文   时间:2019-12-15 00:54:42    阅读次数:104
leetcode 18. 4Sum
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array whic ...
分类:其他好文   时间:2019-12-15 00:47:24    阅读次数:67
Codeforces Round #606 Div. 2 比赛情况
比赛情况 bq. A题 , E题sb题没切。bqbqbq. 比赛总结 bq. 那就直接上题解吧!^ ^ A 数位dp,分类讨论。 Talk is cheap.Show me the code. B 我们把数值一样的数放在一起,扔进堆里。按数值从大到小处理就OK了。 注意值域比较大,用一下 $STL$ ...
分类:其他好文   时间:2019-12-14 23:17:08    阅读次数:137
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!