Linux:相对路径,存放到了和代码相同目录 write.table(x, "./abc.txt") Windows:绝对路径 write.table(x, "D:/codes/abc.txt") ...
分类:
编程语言 时间:
2020-06-15 12:11:46
阅读次数:
189
题目如下: Given a binary string s and an integer k. Return True if every binary code of length k is a substring of s. Otherwise, return False. Example 1: ...
分类:
其他好文 时间:
2020-06-13 10:37:42
阅读次数:
60
一,背景介绍 系统较为复杂,现拆解日志切面部分,表述如下 1,A定时任务执行之前,记录开始日志 2,执行成功,记录成功日志,同时获取执行方法的结果 3,执行失败,记录失败日志。 二,代码结构 直接点,say nothing without codes, 1 <dependency> 2 <group ...
分类:
其他好文 时间:
2020-06-02 12:52:46
阅读次数:
154
一、获取资源 1.打开需要模仿的页面:http://mail.swpu.edu.cn/ 2.按F12,查看网页的源码: 二、编写代码 三、效果展示 登陆成功则跳转成功 8.码云地址:https://gitee.com/LDS19980227/codes 9.总结: 在做这个之前,我没有一点相关的基础 ...
分类:
其他好文 时间:
2020-05-23 11:22:03
阅读次数:
66
题目描述: import java.util.TreeSet; class Solution { public int uniqueMorseRepresentations(String[] words) { String[] codes = {".-","-...","-.-.","-..",". ...
分类:
其他好文 时间:
2020-05-04 23:05:22
阅读次数:
74
while (live){ # nature # -animal # Divinity # -love # Target # Find the essence # Use the brain # Use the eyes # Use hands # Use hearing # Use touch # ...
分类:
其他好文 时间:
2020-04-25 22:03:01
阅读次数:
68
import seaborn as sns import numpy as np import pandas as pd import matplotlib.pyplot as plt sns.set(style = "whitegrid",color_codes = True) np.random ...
分类:
其他好文 时间:
2020-04-24 13:18:00
阅读次数:
69
? Table of Contents 1. greek letter in MS word 1 greek letter in MS word insert/symbol alt codes check the Character code F alt+70 ζ U+03B6 https://ww ...
分类:
其他好文 时间:
2020-04-09 11:05:07
阅读次数:
67
本博客在在这里重新总结了一下,当前常用的经典数据结构;这里只针对链表,顺序表,简单树和图进行总结;具体实现请参考:https://github.com/yaowenxu/codes/tree/master/数据结构; 本文章,主要讨论数据结构的性质;以及对这些数据结构的性质;主要是用来知识整理与复习 ...
分类:
其他好文 时间:
2020-03-28 17:42:24
阅读次数:
91
1.必考:HTTP 状态码知道哪些?分别什么意思? 2xx 表示成功 3xx 表示需要进一步操作 4xx 表示浏览器方面出错 5xx 表示服务器方面出错 完整参考 http://www.runoob.com/http/http-status-codes.html HTTP STATS CAT 哈哈哈 ...
分类:
Web程序 时间:
2020-03-27 01:11:14
阅读次数:
248