码迷,mamicode.com
首页 >  
搜索关键字:abap example    ( 18648个结果
【刷题-LeetCode】151 Reverse Words in a String
Reverse Words in a String Given an input string, reverse the string word by word. Example 1: Input: "the sky is blue" Output: "blue is sky the" Exampl ...
分类:其他好文   时间:2020-07-07 15:09:44    阅读次数:43
leetcode 剑指 Offer 35. 复杂链表的复制
package com.example.lettcode.offer; import java.util.HashMap; import java.util.Map; /** * @Class CopyRandomList * @Description 剑指 Offer 35. 复杂链表的复制 * ...
分类:其他好文   时间:2020-07-07 13:26:38    阅读次数:57
Python configparser模块操作代码实例
1、生成配置文件 ''' 生成配置文件 ''' import configparser config = configparser.ConfigParser() # 初始化赋值 config["DEFAULT"] = {'ServerAliveInterval': '45', 'Compressio ...
分类:编程语言   时间:2020-07-06 15:59:15    阅读次数:61
【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
18648条   上一页 1 ... 32 33 34 35 36 ... 1865 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!