码迷,mamicode.com
首页 >  
搜索关键字:example 复杂条件查询    ( 17809个结果
【LeetCode】【Math】the kth factor of n
题目: 给定两个正整数n和k。 整数n的因数定义为整数i,其中n%i == 0。 考虑按升序排列的所有n个因子的列表,返回此列表中的第k个因子;如果n小于k个因子,则返回-1。 Example 1: Input: n = 12, k = 3 Output: 3 Explanation: Factor ...
分类:其他好文   时间:2020-07-06 10:53:09    阅读次数:52
Eureka 的搭建
1、创建普通 Spring Boot 项目,并添加 Eureka 的依赖。 如下图所示: 2、在启动类上添加注解 @EnableEurekaServer 注解 @EnableEurekaServer 表示开启 Eureka 的功能 package com.example.eureka; import ...
分类:其他好文   时间:2020-07-05 23:03:13    阅读次数:52
LTE - DL-SCH HARQ Modeling
Introduction The Downlink Shared Channel (DL-SCH) is described in TS36.212, Section 5.3.2. This example demonstrates how a transmitter retransmits a s ...
分类:其他好文   时间:2020-07-05 19:12:43    阅读次数:86
LTE - Create Synchronization Signals
In this example, the primary and secondary synchronization signals are created and mapped to a resource grid. Set up the cell-wide settings. Create a ...
分类:其他好文   时间:2020-07-05 17:46:46    阅读次数:79
git学习(1)-git基础
Git 学习 首先安装 git ,安装过程很简单,省略。 安装完git之后需要配置git $ git config --global user.name "Your Name" $ git config --global user.email "email@example.com" 初始化仓库 切换 ...
分类:其他好文   时间:2020-07-05 17:02:55    阅读次数:67
html基础
HTML5 HTML 基本文档 <!DOCTYPE html> <html> <head> <title>文档标题</title> </head> <body> 可见文本... </body> </html> 基本标签(Basic Tags) <h1>最大的标题</h1> <h2> . . . </ ...
分类:Web程序   时间:2020-07-05 00:39:53    阅读次数:82
高层命令
安装 git --version 初始化配置 git config --global user.name "damu" git config --global user.email damu@example.com git config --list 初始化仓库 git init C(新增) 在工作 ...
分类:其他好文   时间:2020-07-04 22:48:04    阅读次数:78
CommonJS规范
Node应用由模块组成,采用CommonJS模块规范。 每个文件就是一个模块,有自己的作用域。每一个文件里面定义的变量、函数、类都是私有的,对其他文件不可见。 // example.js var x = 5 var add = function(value){ return value + x } ...
分类:Web程序   时间:2020-07-04 21:13:56    阅读次数:70
SpringBoot第三篇【Spring读取配置】
Spring读取配置的两种方式 注解的方式 ApplicationContext ac=new AnnotationApplicationContext("MyConfig.class") package com.example.demo; import org.springframework.co ...
分类:编程语言   时间:2020-07-04 18:58:16    阅读次数:59
1331. Rank Transform of an Array
问题: 给定一个数组,对所有元素进行,按大小排名rank,同样大小排名相同。 Example 1: Input: arr = [40,10,20,30] Output: [4,1,2,3] Explanation: 40 is the largest element. 10 is the small ...
分类:其他好文   时间:2020-07-04 15:11:29    阅读次数:58
17809条   上一页 1 ... 29 30 31 32 33 ... 1781 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!