最新 最热

POJ 2653--Pick-up sticks(判断线段相交)

Pick-up sticks Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 14568 Accepted: 5510 Description

2019-02-20
1

LeetCode409 Longest Palindrome

Given a string which consists of lowercase or uppercase letters, find the length of the longest palindromes that can be built with those letters.

2019-02-19
1

HDU 1085 母函数 硬币组合

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 13245    Accepted Submission(s): 5931

2019-02-18
1

大厂与小厂工作的选择

这周末回老家参加妹妹的婚礼,喜宴上和转行进入计算机行业1年多的老弟,聊了不少最近他的现状情况,发现和我刚毕业一两年那会情况类似。

2018-12-26
0

Leetcode Container With Most Water

Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of l...

2018-09-04
1

将字符转换成带有圆圈的字符

将字符转换成带有圆圈的字符private string Convert(int m)         {             switch (m)             {                 case 1: return "①";         ...

2018-08-03
0

fallthrough语法

swift 中 switch case 后默认语句后面都会break, 所以当满足某个case之后仍旧想使它匹配下一个case,使用 fallthrough,则不会被截断;case "b","B" print("this is b/B")case "a": print("this is a") f......

2018-06-13
1

case 判断

• 格式case 变量名 in value1) command ;;value2) command ;;*) commond ;;esac如果case中的某个value是一样的,我们可以这样写:在case程序中,可以在条件中使用 |,表示或的意思, 比如2|3) ......

2018-05-09
0

if和else匹配问题以及switch问题

$b = 1; $a = 2; if ($a > 1) { echo ‘1’; if ($b > 2) { echo ‘2’; } } else { echo ‘3’; }这样的代码是很规范的,但是,如果你不带{}的括号,你执行之后显示的结果会让你很纠结的~~我认为else匹配最近的一个if,问题就...

2018-05-07
1

Java基础第三天学习笔记

03.01_Java语言基础(逻辑运算符的基本用法)(掌握)* A:逻辑运算符有哪些 * &,|,^,! * &&,|| * B:案例演示* 逻辑运算符的基本用法* 注意事项: * a:逻辑运算符一般用于连接boolean类型的表达式或者值。 * b:表达式:就是用...

2018-04-17
1