#include <stdio.h>int main(){ void hanoi(int n,char one, char two,char three); int m; scanf("%d",&m); printf("move %d diskes:\n",m); hanoi(m,'A','B',' ...
分类:
编程语言 时间:
2020-12-03 12:14:56
阅读次数:
7
非商业,LeetCode链接附上: https://leetcode-cn.com/problems/uncommon-words-from-two-sentences/ 进入正题。 题目: 给定两个句子 A 和 B 。 (句子是一串由空格分隔的单词。每个单词仅由小写字母组成。) 如果一个单词在其中 ...
分类:
其他好文 时间:
2020-12-02 12:01:10
阅读次数:
3
题目 Petya has equal wooden bars of length n. He wants to make a frame for two equal doors. Each frame has two vertical (left and right) sides of length ...
分类:
其他好文 时间:
2020-11-30 16:00:25
阅读次数:
6
###题目 1287. Element Appearing More Than 25% In Sorted Array ###解题方法 遍历数组,找到出现次数最多的那个数即可。 时间复杂度:O(n) 空间复杂度:O(1) ###代码 class Solution: def findSpecialIn ...
分类:
移动开发 时间:
2020-11-30 15:53:35
阅读次数:
10
Sumdiv Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 37483 Accepted: 9161 Description Consider two natural numbers A and B. Let S be the ...
分类:
其他好文 时间:
2020-11-27 11:53:21
阅读次数:
25
讲这个topic之前,我们先来说一个例子,这是我好几年前刚开始学python的时候,一个很nice的老外给我讲的例子,很有意思:x=99deffunc1():globalxx=88deffunc2():globalxx=77大家觉得x最后的是值到底是多少:88还是77,先思考一下,最后我来揭晓谜底python的变量跟其他语言一样,分为全局变量和局部变量,这个概念比较好理解,我们来看看python中
分类:
其他好文 时间:
2020-11-27 11:18:42
阅读次数:
8
Python里面有3大数据结构:列表,字典和集合.字典是常用的数据结构,里面有一些重要的技巧用法,我把这些都整理到一起,熟练掌握这些技巧之后,对自己的功力大有帮助.1.字典的排序:用万金油sorted()函数举一个简单的例子my_dict={"cc":100,"aa":200,"bb":10}print(sorted(my_dict.it
分类:
编程语言 时间:
2020-11-27 11:11:14
阅读次数:
8
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes conta ...
分类:
其他好文 时间:
2020-11-26 15:14:07
阅读次数:
5
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: Integers in each row are sorted i ...
分类:
其他好文 时间:
2020-11-25 12:59:50
阅读次数:
14
NGINX and the "Power of Two Choices" Load-Balancing Algorithm - NGINX https://www.nginx.com/blog/nginx-power-of-two-choices-load-balancing-algorithm/ ...
分类:
其他好文 时间:
2020-11-23 11:48:43
阅读次数:
4