码迷,mamicode.com
首页 >  
搜索关键字:until    ( 1173个结果
shell (七) 循环
主要内容for循环while循环until循环跳出循环for循环for循环一般格式为:for 变量 in 列表docommand1command2...commandNdone列表是一组值(数字、字符串等)组成的序列,每个值通过空格分隔。每循环一次,就将列表中的下一个值赋给变量。in 列表是可选的,... ...
分类:系统相关   时间:2019-10-20 23:56:43    阅读次数:199
Campus Bikes
1057. Campus Bikes On a campus represented as a 2D grid, there are N workers and M bikes, with N <= M. Each worker and bike is a 2D coordinate on this ...
分类:其他好文   时间:2019-10-08 09:28:03    阅读次数:58
Shell 编程 until语句
本篇主要写一些 脚本 语句的使用。 计算1 50的和 为指定用户发送在线消息 bash !/bin/bash username=$1 判断格式是否正确 if [ $ lt 1 ] ;then echo "Usage: [message]" exit 1 fi 判断用户是否存在 if grep "^$ ...
分类:系统相关   时间:2019-10-08 09:21:31    阅读次数:154
JQuery
jQuery引入 jQuery对象和DOM对象 JQurey对象和DOM对象互相转换 查找标签 基础选择器 层级选择器 基本选择器 绑定事件的简单方法 属性选择器 表单筛选器 表单对象属性 链式表达式 筛选器方法 下一个元素(从上往下找) 上一个元素(从下往上找) 父元素 儿子和兄弟元素 查找fin ...
分类:Web程序   时间:2019-10-04 15:15:22    阅读次数:102
Python 多线程
多线程 平时简单写在一个文件(视为一个进程)里的代码, 都是(像看书一样)按顺序在主线程中执行。线程是程序执行的最小单元, 通过模块threading可以创建线程。 多线程本质是一种IO多次切换的计算操作, 故其适用于IO密集型操作。 如下是个简单的例子: 多线程之join方法 wait until ...
分类:编程语言   时间:2019-10-03 12:59:41    阅读次数:85
做勇敢女孩
So a few years ago, I did something really brave, or some would say really stupid. I ran for congressBut in my heart, I always want to runBut in my mi ...
分类:其他好文   时间:2019-10-02 10:48:44    阅读次数:112
poj-2232 New Stone-Forfex-Cloth Game 思维题
Acm is a clever boy, and he developed a new game form the old Stone-Forfex-Cloth game. In this game, a number of children sit in a circle, each one sh ...
分类:其他好文   时间:2019-10-02 10:47:20    阅读次数:96
ReactiveCocoa
#介绍ReactiveCocoa(其简称为 RAC)是由 Github 开源的一个应用于 iOS 和 OS X 开发的新框架。RAC 具有函数式编程和响应式编程的特性。它主要吸取了 .Net 的 Reactive Extensions 的设计和实现#原理这个是我看过的比较好的例子:可以把信号想象成水... ...
分类:其他好文   时间:2019-10-01 11:44:31    阅读次数:74
179. Largest Number
import java.lang.StringBuilder /** * 179. Largest Number * https://leetcode.com/problems/largest-number/description/ * https://www.cnblogs.com/grandya... ...
分类:其他好文   时间:2019-10-01 09:13:20    阅读次数:79
[LeetCode 1171] Remove Zero Sum Consecutive Nodes from Linked List
Given the head of a linked list, we repeatedly delete consecutive sequences of nodes that sum to 0 until there are no such sequences. After doing so, ...
分类:其他好文   时间:2019-09-29 09:14:16    阅读次数:113
1173条   上一页 1 ... 13 14 15 16 17 ... 118 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!