Leetcode#27. Remove Element
#ProblemGiven an integer array nums and an integer val, remove all occurrences of val in nums in-place. The order of the elements may be changed. Then return the number of elements in nums which are not equal to val.
Consider the number of elements in nums which are not equal to val be k, to get accepted, you need to do the following things:
Change the array nums such that the first k elements of nums contain the elements which are not equal to val. The remaining elements of nums are not import ...
Leetcode#88. Merge Sorted Array
#ProblemYou are given two integer arrays nums1 and nums2, sorted in non-decreasing order, and two integers m and n, representing the number of elements in nums1 and nums2 respectively.
Merge nums1 and nums2 into a single array sorted in non-decreasing order.
The final sorted array should not be returned by the function, but instead be stored inside the array nums1. To accommodate this, nums1 has a length of m + n, where the first m elements denote the elements that should be merged, and the last ...
ReactWeb-deploy-command
我Resume 是使用React (在codesandbox),紀錄上傳至github的步驟
set up前置作業安裝gh-pages1$ npm install gh-pages --save-dev
可以看 dependencies 中有沒有,沒有的話再安裝一次,因為我有遇過安裝後沒有出現在 dependencies 中,若確定安裝成功,則可在package.json 中看到
/ dependencies1"gh-pages": "^5.0.0"
不然就手動加入…
加入deploy指令package.json
/ scripts12"predeploy": "npm run build","deploy": "gh-pages -d build"
設定deploy的分支package.json
/1"homepage": "https://{username}.github.io/{repro-name ...
other bash command
紀錄一些指令
set upRun server1$ npm inatall --force
由於上傳未包含node_modules,因此下載後需要重新安裝
上傳至github1$ pythone PushGit.py
自己寫的上傳程式,包括:hexo generate 、 hexo deploy 、 整包上傳repro/{填寫的分支}
2023/7/18 新增 _config.yml 的github_deploy,節省輸入的時間
1234567# _config.ymlgithub_deploy: type: git repo: https://github.com/ImitatedSky/ImitatedSky.github.io branch: main message: 'deploy' test: "test message"
123456789101112# pip install pyyaml# PushGit.pyimport yamlimport os# 讀取設定檔with open("_con ...
完成的網站了,聊一下
post 測試 123
介紹一下這個網站使用的技術
網站製作使用 Hexo使用 Butterfly 主題部屬至 Github Pages網域 使用 Namecheap由於使用 GitHub Page 上展示一些靜態內容,並且不涉及使用者的敏感信息或網站交互,那麼購買 SSL 證書”好像”不是必需的。其實我也在Namecheap上也買,但是沒有使用到。 拜託不要攻擊我QQ
有沒有人要委託我做部落格呢?
Post Front-matter
寫法,
解釋
title
【必需】文章標題
date
【必需】文章創建日期
updated
【可選】文章更新日期
tags
【可選】文章標籤
categories
【可選】文章分類
keywords
【可選】文章關鍵字
description
【可選】文章描述
top_img
【可選】文章頂部圖片
cover
【可選】文章縮略圖(如果沒有設置top_img,文章頁頂部將顯示縮略圖,可設為false/圖片地址/留空)
comments
【可選】顯示文章評論模塊(默認 true)
toc
【可選】顯示文章TOC(默認為設置中toc的enable配置)
toc_number
【可選】顯示toc_number(默認為設置中toc的number配置)
toc_style_simple
【可選】顯示 toc 簡潔模式
copyright
【可選】顯示文章版權模塊(默認為設置中post_copyright的enable配置)
copyright_author
【可選】文章版權模塊的文章作者
copyright ...