码迷,mamicode.com
首页 >  
搜索关键字:can    ( 23056个结果
【转】[fix] Wireshark error: There are no interfaces on which a capture can be done. on Mac OS X
I got the following error message when trying to open a network interface for capture using Wireshark on Mac OS X (Wireshark 1.5.1 Intel 64 beta and 1...
分类:系统相关   时间:2015-07-15 10:40:17    阅读次数:270
[转]cron语法
最近在搞whenever时看到可以用cron语法设置定时任务。所以研究了下cron 语法。every'0 0 27-31 * *'do command"echo 'you can use raw cron syntax too'"endcron命令,用于设置周期性被执行的指令。格式#文件格式说明#—...
分类:其他好文   时间:2015-07-15 09:19:36    阅读次数:109
[LeetCode] Climbing Stairs
Well, a classic and interesting problem. The recursion is simplyf(n) = f(n - 1) + f(n - 2), which means that we can either climb ton - 1and then climb...
分类:其他好文   时间:2015-07-15 01:16:29    阅读次数:193
[LeetCode][JavaScript]Unique Paths
Unique PathsA robot is located at the top-left corner of amxngrid (marked 'Start' in the diagram below).The robot can only move either down or right a...
分类:编程语言   时间:2015-07-14 23:54:41    阅读次数:222
Access Jira RESTful API by cURL
*******INSTRUCTION FOR GETING RECORDS FROM JIRA by cURL*****************Jira supply RESTfull API, so we can use cURL to get data. Below is the steps,1...
分类:数据库   时间:2015-07-14 20:19:41    阅读次数:172
【Binary Tree Right Side View 】cpp
题目:Given a binary tree, imagine yourself standing on therightside of it, return the values of the nodes you can see ordered from top to bottom.For exa...
分类:其他好文   时间:2015-07-14 20:17:02    阅读次数:127
[LeetCode] Word Search
Question:Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, wher...
分类:其他好文   时间:2015-07-14 20:16:26    阅读次数:114
leetcode - Linked List Cycle II
leetcode - Linked List Cycle IIGiven a linked list, return the node where the cycle begins. If there is no cycle, return null. Follow up:Can you solve...
分类:其他好文   时间:2015-07-14 19:57:11    阅读次数:96
Project Euler:Problem 62 Cubic permutations
The cube, 41063625 (3453), can be permuted to produce two other cubes: 56623104 (3843) and 66430125 (4053). In fact, 41063625 is the smallest cube which has exactly three permutations of its digits ...
分类:其他好文   时间:2015-07-14 18:21:53    阅读次数:113
[ACM] POJ 2506 Tiling (递归,睑板)
TilingTime Limit:1000MSMemory Limit:65536KTotal Submissions:7487Accepted:3661DescriptionIn how many ways can you tile a 2xn rectangle by 2x1 or 2x2 ti...
分类:其他好文   时间:2015-07-14 17:28:21    阅读次数:131
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!