码迷,mamicode.com
首页 >  
搜索关键字:return    ( 60766个结果
744. Find Smallest Letter Greater Than Target
Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if i ...
分类:其他好文   时间:2021-06-17 17:13:05    阅读次数:0
使用位运算查找只出现一次的数字
一个数组中只有一个数字出现一次,其他数字都出现两次,请找出这个数字 class Solution { public int singleNumber(int[] nums) { int res = 0; for (int num : nums) { res ^= num; } return res; ...
分类:其他好文   时间:2021-06-17 16:49:19    阅读次数:0
05 函数
函数的定义 # 方式一 start () { echo "nginx start .... [OK]" #return 0 } stop () { echo "nginx stop .... [FAIL]" } # 方式二 function start { echo "nginx start ... ...
分类:其他好文   时间:2021-06-17 16:37:05    阅读次数:0
vue3 组件
基本实例 <div id="vm"> <button-counter></button-counter> </div> <script> const v = Vue.createApp({ data() { return { count: 0 } }, template: `<button @cli ...
分类:其他好文   时间:2021-06-17 16:30:09    阅读次数:0
API 读写cookie的方法
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Linq; using System.Net.Http; ...
分类:Windows程序   时间:2021-06-17 16:27:43    阅读次数:0
876. 链表的中间结点
1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * struct ListNode *next; 6 * }; 7 */ 8 9 10 struct ListNode* middleN ...
分类:其他好文   时间:2021-06-16 18:35:48    阅读次数:0
将文件写入到本地磁盘-IO流使用
/** * 将文件写入到本地磁盘 * @param dirPath 目录路径 * @param fileName 文件名,包含文件后缀 * @param buffer 文件 * @return 文件路径 */ public String writeToFile(String dirPath, Str ...
分类:其他好文   时间:2021-06-16 18:22:56    阅读次数:0
JavaDoc命令入门
JavaDoc命令 javadoc命令是用来生成自己API文档的 /**+回车 参数信息 @author 作者名 @version 版本号 @since 指明需要最早使用的jdk版本 @param 参数名 @return 返回值情况 @throws 异常抛出情况 IDEA中:在方法上直接输入/**+ ...
分类:编程语言   时间:2021-06-16 17:57:37    阅读次数:0
1. python中常用的内置函数
1. vars vars(objcet) 函数返回对象object的属性和属性值的字典对象 def test(a, b): # {'a': 10, 'b': 20} 常用打印函数的所有入参 print(vars()) return a + b if __name__ == '__main__': t ...
分类:编程语言   时间:2021-06-16 17:51:29    阅读次数:0
子序列自动机 (内含非自动机的线性做法)
子序列自动机 (Subsequence Automaton) 时隔两个月回来学自动机. 子序列自动机可以在线性时间识别一个字符串 \(a\) 是否是 \(s\) 的子序列. 首先考虑 \(s\) 没有重复字符的情况, 那么 \(s\) 的子序列就是 \(2^{Len_s}\) 种, 分别是每个字符选 ...
分类:其他好文   时间:2021-06-16 17:45:38    阅读次数:0
60766条   上一页 1 ... 10 11 12 13 14 ... 6077 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!