Monkey and Banana A group of researchers are designing an experiment to test the IQ of a monkey. They will hang a banana at the roof of a building, an ...
分类:
其他好文 时间:
2019-07-30 16:02:03
阅读次数:
98
问题描述: Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Example 2: Examp ...
分类:
其他好文 时间:
2019-07-29 14:40:32
阅读次数:
116
/** * This problem was asked by Microsoft. Given an array of numbers and a number k, determine if there are three entries in the array which add up to... ...
分类:
其他好文 时间:
2019-07-28 14:09:51
阅读次数:
106
A crime has been comitted: a load of grain has been taken from the barn by one of FJ's cows. FJ is trying to determine which of his C (1 <= C <= 100) ...
分类:
其他好文 时间:
2019-07-23 16:58:45
阅读次数:
132
继更新curl之后,又发现一个命令yum不可用。 yum实际上是一个python脚本,里面导入了yum module。 调用了pycurl库,据了解pycurl 是libcurl的一个python接口。实际上也是调用的libcurl库。 查了一波资料,发现libcurl库有问题,重新通过 .conf ...
分类:
Web程序 时间:
2019-07-23 00:15:19
阅读次数:
191
报错相关信息: 原因:maven父子聚合工程,pom父项目中如果添加了数据库驱动依赖的话,boot项目的autoconfig回去读取加载DataSource相关的配置,读取不到即报错。在一些新项目初始或者不需要db的项目(比如eureka)中,可配置boot的启动类: 排除DataSource的自动 ...
分类:
编程语言 时间:
2019-07-22 18:33:06
阅读次数:
166
#归档(自动备份) 归档数据文件 1. 需要的功能 $ tar -zcf archive.tar.gz /home/Christine/Project/*.* 2>/dev/null -- -z进行压缩,重定向错误日志清空掉(警告提示是去掉了开头的斜杠,以便于使用的时候可以解压到任意路径) $ ..... ...
分类:
其他好文 时间:
2019-07-17 11:06:50
阅读次数:
186
给定一个链表,判断链表中是否有环。 为了表示给定链表中的环,我们使用整数 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 是 ,则在该链表中没有环。 Given a linked list, determine if it has a cycle in it. To represent ...
分类:
其他好文 时间:
2019-07-16 10:55:37
阅读次数:
73
启动apache遇到提示: [root@bqh-119 conf]# ../bin/apachectl -thttpd: apr_sockaddr_info_get() failed for bqh-119httpd: Could not reliably determine the server' ...
分类:
Web程序 时间:
2019-07-14 23:49:33
阅读次数:
184
简介 浏览他人技术博客的时候,会看到用文本列出漂亮的文件夹目录,实际大部分都是使用了Linux下的 Tree 命令。以下简单介绍下 Tree 命令的格式和例子。 安装 一般Linux系统是不自带 Tree 命令工具的,可以通过以下命令获取和安装: 格式 通过上述命令获取后,可以通过一下命令显示使用方 ...
分类:
系统相关 时间:
2019-07-13 23:55:03
阅读次数:
199