2022年2月11日
摘要: import yaml#call Cloader to speed up try: from yaml import CLoader as Loader except ImportError: from yaml import Loader try: file_handler = open(file 阅读全文
posted @ 2022-02-11 18:37 guolongnv 阅读(32) 评论(0) 推荐(0) 编辑
  2022年2月9日
摘要: Select Start > Settings > Network & internet > Ethernet. Under Properties, look for your IP address listed next to IPv4 address. 阅读全文
posted @ 2022-02-09 15:42 guolongnv 阅读(21) 评论(0) 推荐(0) 编辑
  2022年1月21日
摘要: mysql> command to show all database: show schemas; Command to choose one database: use <Database name>; Command to show all existing tables in the cho 阅读全文
posted @ 2022-01-21 13:20 guolongnv 阅读(18) 评论(0) 推荐(0) 编辑
  2021年8月4日
摘要: Question https://leetcode.com/problems/median-of-two-sorted-arrays/ Given two sorted arrays nums1 and nums2 of size m and n respectively, return the m 阅读全文
posted @ 2021-08-04 14:29 guolongnv 阅读(34) 评论(0) 推荐(0) 编辑
摘要: Question: https://leetcode.com/problems/trapping-rain-water/ Given n non-negative integers representing an elevation map where the width of each bar i 阅读全文
posted @ 2021-08-04 14:25 guolongnv 阅读(41) 评论(0) 推荐(0) 编辑
  2021年7月31日
摘要: Q: Given a string s, find the length of the longest substring without repeating characters. Example 1: Input: s = "abcabcbb" Output: 3 Explanation: Th 阅读全文
posted @ 2021-07-31 13:33 guolongnv 阅读(75) 评论(0) 推荐(0) 编辑
  2021年7月17日
摘要: Question: Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume tha 阅读全文
posted @ 2021-07-17 23:16 guolongnv 阅读(32) 评论(0) 推荐(0) 编辑
  2018年11月15日
摘要: https://www.yiibai.com/pandas 阅读全文
posted @ 2018-11-15 20:32 guolongnv 阅读(164) 评论(0) 推荐(0) 编辑
  2018年5月7日
摘要: 1.What does your reader need to know? 2.What does your reader know already? 3.Will your reader be able to ask for more details? 阅读全文
posted @ 2018-05-07 21:16 guolongnv 阅读(150) 评论(0) 推荐(0) 编辑
  2018年4月27日
摘要: import subprocess subprocess.call("csv_gen.pl -by overall", shell=True) 阅读全文
posted @ 2018-04-27 21:12 guolongnv 阅读(359) 评论(0) 推荐(0) 编辑