原创 6. ZigZag Conversion

The string “PAYPALISHIRING” is written in a zigzag pattern on a given number of rows like this: (you may want to di

原创 10. Regular Expression Matching

Implement regular expression matching with support for ‘.’ and ‘*’. ‘.’ Matches any single character. ‘*’ Ma

原创 Documents and manuals

- GNU make manual 點贊 收藏 分享 文章舉報 liyiheng123 發佈了21 篇原創文章 · 獲贊 5 · 訪問量 2萬+ 私信

原创 歡迎使用CSDN-markdown編輯器

歡迎使用Markdown編輯器寫博客 本Markdown編輯器使用StackEdit修改而來,用它寫博客,將會帶來全新的體驗哦: Markdown和擴展Markdown簡潔的語法 代碼塊高亮 圖片鏈接和圖片上傳 LaTex數學公

原创 2. Add Two Numbers

You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse o

原创 149. Max Points on a Line

Given n points on a 2D plane, find the maximum number of points that lie on the same straight line. Solution: /**

原创 4. Median of Two Sorted Arrays

There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays.

原创 [譯]用go進行區塊鏈開發3:持久化與CLI

原地址 原文地址 https://jeiwan.cc/posts/building-blockchain-in-go-part-3/ 簡介 目前爲止,我們做了帶有工作量證明系統的區塊鏈,因此它是可以挖礦的。我們的實現與全功能的區塊鏈越

原创 不再傻傻分不清:atoi, itoa, iota

atoi Array to Integer 字符數組(字符串)轉化爲整數。golang標準庫與C++標準庫均有 itoa Integer to Array 整數轉化爲字符串。golang標準庫與C++標準庫均有 iota 希臘字母。g

原创 MongoDB入門

原文地址https://github.com/XanthusL/blog-gen MongoDB入門 insert find update remove explain index 主從複製 讀寫分離 golang mgo 安裝

原创 WebSocket初探

原文地址https://github.com/XanthusL/blog-gen 作爲一名Android開發狗,目前爲止筆者接觸到的網絡開發幾乎全是http請求,即時通訊則是第三方SDK。 http是無狀態協議,即時通訊?還是xmp

原创 [譯]在go可執行文件中嵌入數據

原地址https://github.com/XanthusL/blog-gen 原文地址 https://scene-si.org/2017/08/22/embedding-data-in-go-executables/ 假如你已經關

原创 [譯]我的go語言使用場景

原地址https://github.com/XanthusL/blog-gen 原文地址https://mariosangiorgio.github.io/post/my-use-case-for-go/ After using

原创 Redis中zset的golang實現

zset 初衷是在不用Redis的前提下實現排行榜 項目地址https://github.com/XanthusL/zset Installation go get -u github.com/XanthusL/zset Usage

原创 [譯]用go進行區塊鏈開發2:工作量證明

原地址https://github.com/XanthusL/blog-gen 原文地址 https://jeiwan.cc/posts/building-blockchain-in-go-part-2/ 簡介 上一篇文章我們根據區塊