VJ
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Note Insights Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       owned this note    owned this note      
    Published Linked with GitHub
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    --- lang: zh-tw tags: java, algorithm # 在此輸入標籤(以","分隔) image: null # 在此輸入預覽圖片網址 --- # 1092 中興大學資工系必修課-演算法 ![](https://img.shields.io/github/last-commit/twjmy/algorithms?color=success) ![](https://img.shields.io/github/languages/top/twjmy/algorithms) ![](https://img.shields.io/badge/dynamic/json?color=aqua&query=%24.viewcount&label=%E9%BB%9E%E6%93%8A%E6%AC%A1%E6%95%B8&suffix=%E6%AC%A1&url=https%3A%2F%2Fhackmd.io%2F%40VJ%2F1092-algorithms-nchu%2Finfo) [![hackmd-github-sync-badge](https://hackmd.io/fRHOXqCNSx6Wd3yEKjQf2w/badge)](https://hackmd.io/@VJ/1092-algorithms-nchu/edit?both) <details open><summary>目錄</summary> + [HW01 - ArrayData](#HW01---ArrayData) + [HW02 - ThreeSum](#HW02---ThreeSum) + [HW03 - HillFinding](#HW03---HillFinding) + [HW04 - One 0K Rock](#HW04---One-0K-Rock) + [HW05 - LLK](#HW05---LLK) + [HW06 - Dessert Desert](#HW06---Dessert-Desert) + [HW07 - Buy Phone](#HW07---Buy-Phone) + [HW08 - Buy Phone v2](#HW08---Buy-Phone-v2) + [HW09 - LSD](#HW09---LSD) + [HW10 - Sorting](#HW10---Sorting) + [HW11 - GroupCounting](#HW11---GroupCounting) </details> --- ## HW01 - ArrayData ### Assignment 會給一個Array,分別求Array的最大值和最小值 | Example | Method Calling / Return | | ------- | --------------------------- | | Input | `ArrayData(new int{1,2,3})` | | Output | `int min() = 3, max() = 1` | ### Abstract class ```java=! public abstract class ArrayData { public int [] A; public abstract int max(); public abstract int min(); } ``` ### Solution 由於助教沒有給定傳入陣列的方式,一開始假設助教使用 `HW01.A=測資`,所以直接實作 `max()`、`min()` ```java=! public class HW01_1 extends ArrayData{ public int max(){ int max = A[0]; for(int i = 1; i < A.length; i++) if(A[i]>max) max=A[i]; } public int min(){ int min = A[0]; for(int i = 1; i < A.length; i++) if(A[i]<min)min=A[i]; } } ``` 結果當然是報錯的,因為助教是用建構元 `ArrayData(int[])` 來建構我們的 `class` 成物件再用這個物件呼叫 `max()`、`min()`,所以應該這樣實作 ```java=! public class HW01_2 extends ArrayData{ public HW01_2(final int[] A) { this.A = A; } public int max(){ int max = A[0]; for(int i = 1; i < A.length; i++) if(A[i]>max) max=A[i]; } public int min(){ int min = A[0]; for(int i = 1; i < A.length; i++) if(A[i]<min)min=A[i]; } } ``` 這樣實作的時間複雜度會是 `O(N)`。但既然助教在建構元就傳入陣列了,我們可以在建構的時候就找出最大、最小值再呼叫 ```java=! public class HW01_3 extends ArrayData{ public int max, min; public HW01_3(final int[] A){ max = min = A[0]; for(int i = 1; i < A.length; i++) if(A[i]>max) max = A[i]; if(A[i]<min) min = A[i]; } } public int max(){ return max; } public int min(){ return min; } } ``` 理論上助教如果計時是在呼叫 `max()`、`min()` 前後才開始計時,這個版本相當於直接回傳答案,所以時間複雜度會是 `O(1)`。 --- ## HW02 - ThreeSum ### Assignment 計算陣列中任意三個數字相加為零的組合數 (數組中不會有重複的數字) | Example | Method Calling / Return | | ------- | --------------------------------- | | Input | `int[] A = {-1,1,2,4,8,-3}` | | Output | `int T_sum(A) = 2` | 分別是 (1,2,-3) 以及 (-1,4,-3) 2組 ### Abstract class ```java=! public abstract class ThreeSum { public abstract int T_sum(int[] A); } ``` ### Solution #### Brute-force ```java=! public class HW02_1 extends ThreeSum{ public int T_sum(int[] A){ int count = 0; for(int i = 0; i < N; i++) for(int j = i+1; j < N; j++) for(int k = j+1; k < N; k++) if(a[i]+a[j]+a[k] == 0) count++; return count; } } ``` 暴力解,時間複雜度是 `O(N³)`。 #### Binary search 參考老師的[投影片](https://www.dropbox.com/s/cxrvhuj9mnk2uio/%E6%BC%94%E7%AE%97%E6%B3%95%E8%AC%9B%E7%BE%A92020.pdf) Lecture 2 第 40,42 頁裡的程式碼,整合、修改一下 ```java=! import java.util.Arrays; public class HW02_2 extends ThreeSum{ public int T_sum(int[] a){ Arrays.sort(a); int N = a.length-2; int cnt = 0; for(int i = 0; i < N; i++){ int key = -a[i]; int lo = i+1, hi = a.length-1; while(lo < hi){ int sum = a[lo] + a[hi]; if(key < sum) hi--; else if (key > sum) lo++; else{ hi--; lo++; cnt++; } } } return cnt; } } ``` 這樣時間複雜度是 `O(N²)`。另外由於老師不讓我們 `import` ,所以我們要自己實作 `sort(int[])`。 --- ## HW03 - HillFinding ### Assignment **Input**: An array. In this mission we find the peak of the array, then find out which cutting position of the array which could produce a sorted array. **Final return**: Cutting position of the array <details> <summary>Please refer to the attached .jpg file to see the example</summary> <img src="https://lms.nchu.edu.tw/sysdata/attach/exercise.30426/2390c9e66e43ce6dabe3b00596cc3e52.jpg" alt="Example 1"> <img src="https://lms.nchu.edu.tw/sysdata/attach/exercise.30426/8798c80c1fad0655d38c5e51c9c20ae8.jpg" alt="Example 2"> </details> TestCase(input) will not include arrays like: 1. All same: `8,8,8,8,8,8` 2. Whole ascending: `1,2,3,4,5,6,7` | Example | Method Calling / Return | | -------- | ---------------------------- | | Input 1 | `int[] A1 = {5,6,7,1,2,3,4}` | | Output 1 | `int H_Finding(A1) = 3` | | Input 2 | `int[] A2 = {5,7,8,8,1,3,4}` | | Output 2 | `int H_Finding(A2) = 2` | ### Abstract class ```java=! public abstract class HillFinding { public abstract int H_Finding(int[] A); } ``` ### Solution #### Brute-force 因為題目說不會有 `1,2,3,4,5,6,7` 的情況,可以這樣實作 ```java=! public class HW03_1 extends HillFinding { public int H_Finding(int[] A){ int i = 0; for(i=0; A[i]<=A[++i];); return A.length-1-i; } } ``` 暴力解,時間複雜度是 `O(N)`。 #### Binary search 同樣,參考老師的[投影片](https://www.dropbox.com/s/cxrvhuj9mnk2uio/%E6%BC%94%E7%AE%97%E6%B3%95%E8%AC%9B%E7%BE%A92020.pdf) Lecture 2 第 40 頁裡的程式碼,修改一下 ```java=! public class HW03_2 extends HillFinding { public int H_Finding(final int[] A) { final int END = A.length-1; int lo = 0, hi=END; for(mid=hi>>>1; lo <= hi; mid = lo+hi>>>1){ if(mid < END && A[mid+1] < A[mid]) return END-i-1; else if(mid > lo && A[mid-1] > A[mid]) return END-i; else if(A[hi]>A[mid]) hi = mid-1; else lo = mid+1; } int i; for(i=0; A[i]<=A[++i];); // 最後手段 return END-i; } } ``` 在 `for()` 迴圈裡找不到答案會是例外狀況,所以我加了最後手段,這樣時間複雜度是 `O(lgN)`。 --- ## HW04 - One 0K Rock ### Assignment Your program will take a bunch of string arrays as input. Please determine whether a given array comes from { 0<sup>k</sup>1<sup>k</sup> \| k ∈ Z<sup>+</sup> } ( the input arrays do not contain empty string and non 0,1 characters) For example, 1. Input: `["0011","00111"]` , Output: `[true,false]` 2. Input: `["01","1100","1111"]` , Output: `[true,false,false]` | Example | Method Calling / Return | | -------- | -------------------------------------------- | | Input 1 | `String[] str1 = {"0011","00111"}` | | Output 1 | `boolean[] one0k(str1) = {true,false}` | | Input 2 | `String[] str2 = {"01","1100","1111"}` | | Output 2 | `boolean[] one0k(str2) = {true,false,false}` | ### Abstract class ```java=! public abstract class One_0k_rock { public abstract boolean[] one0k(String[] str); } ``` ### Solution #### Brute-force (Regular Expression) 由於 Java 的 String 內建的 [`matches(String)`](https://docs.oracle.com/javase/9/docs/api/java/lang/String.html#matches-java.lang.String-) 可以讓我們使用正則表達式判斷,取字串長度的一半(`len>>>1`)作為 0<sup>k</sup>1<sup>k</sup> 裡的 k ,所以可以這樣實作 ```java=! public class HW04_1 extends One_0k_rock { public boolean[] one0k(final String[] str) { final boolean[] result = new boolean[str.length]; for(int i = 0; i < str.length; i++){ final int len = str[i].length(); if((len&1)==1) continue; // 奇數個的情況跳過: l&1 相當於 l%2 final int half = len>>>1; if(str[i].matches("0{"+half+"}1{"+half+"}")) result[i] = true; } return result; } } ``` 這樣的實作我們無法得知時間複雜度是多少,因為我們不是寫 [`matches(String)`](https://docs.oracle.com/javase/9/docs/api/java/lang/String.html#matches-java.lang.String-) 這個函式的人,但結果都比下面來的慢。 #### Left-right compare 一個基本的想法,從左邊到中間數過去第一個、右邊到中間數過來第一個開始比較,不對就跳出迴圈,可以這樣實作 ```java=! public class HW04_2 extends One_0k_rock { public boolean[] one0k(final String[] str) { final boolean[] result = new boolean[str.length]; for(int i=0,j; i<str.length; ++j) { final String s = str[i]; final int len = s.length(); if((len&1)==1) continue; final int end = len -1; for(j = -1; s.charAt(++j)=='0' && s.charAt(end-j)=='1';); // j 如果指到 len>>>1 就代表條件通過了 (len>>>1)-1 次 if((len>>>1)==j) result[i] = true; } return result; } } ``` 你可能會想問,為什麼不直接 `str[i].charAt(++j)<str[i].charAt(l-1-j)` 就好?答案是因為用 `chatAt(int)` 也需要耗時間,我直接生一個立即的字符來比較,如果不對當下直接跳出迴圈,就可以省去多一次呼叫的時間。這樣對於每個正確的字串來說時間複雜度會是 `T(5+½N+½N+2) = T(7+N) ~ O(N)` 。 #### Left-right compare - from middle 感謝 [@bettyteng21](https://github.com/bettyteng21) 提出,如果從中間開始比,可以同時判斷奇數的情況,省去一個步驟,可以這樣實作 ```java=! public class HW04_3 extends One_0k_rock { public boolean[] one0k(final String[] str) { final boolean[] result = new boolean[str.length]; for(int i=0; i<str.length; ++i) { final String s = str[i]; final int end = s.length()-1; try{ for(int j=(end>>>1)+1; s.charAt(--j)=='0' && s.charAt(end-j)=='1';); }catch(IndexOutOfBoundsException __){ // j 如果指到 -1 就代表條件通過了 len>>>1 次 result[i] = true; } } return result; } ``` 快那麼一點,這樣對於每個正確的字串來說時間複雜度會是 `T(3+½N+½N+1) = T(4+N) ~ O(N)` ,但我有看過 [@bettyteng21](https://github.com/bettyteng21) 的[程式碼](https://github.com/bettyteng21/1092-Algorithm/blob/main/alghw04/src/HW04_4108056007_4.java),時間複雜度算下來其實比上面從前面開始比的方法來的高,但就比較快,推測是因為測資 `false` 的結果居多所導致。 --- ## HW05 - LLK ### Assignment Your program will take a set that consists of two-dimensional points as input. Please determine whether the given set containing three points lie in a line. Here is our sample testdata: `[[1,1],[2,2],[3,6]]` | Example | Method Calling / Return | | ------- | ------------------------------------- | | Input | `int[][] array = {{1,1},{2,2},{3,6}}` | | Output | `boolean checkLLK(array) = false` | ### Abstract class ```java=! public abstract class LLK{ public abstract boolean checkLLK(int[][] array); } ``` ### Solution [參考](https://github.com/liao2000/Algorithms-Meet-Java/tree/master/Homework/HW04_PCL) 施工中...:gear: --- ## HW06 - Dessert Desert ### Assignment Your program will take an integer arrays as input. Please return the maximum possible number of blocks in a valid partitioning. A valid partitioning of the integer array is defined as follows. + The numbers are split into blocks — groups of consecutive numbers. The block<sub>i,j</sub> consists of number n<sub>i</sub>, n<sub>i+1</sub>, ..., n<sub>j</sub>. A block can have only a single number. + Every number belongs to one block only. + The partitioning should satisfy the condition that after each block is sorted, the whole sequence becomes sorted as well. | Example | Method Calling / Return | | ------- | ------------------------------------------ | | Input | `int[][] inputArr = {{1,1,1,1,1,1,1},{1,3,5,7,9},{1,2,3},{5,4,3,2,1},{2,1,3,2}}` | | Output | `int[] maxBlocks(inputArr) = {7,5,3,1,2}` | ### Abstract class ```java=! public abstract class Dessert_Desert{ public abstract int[] maxBlocks(int[][] inputArr); } ``` ### Solution [參考](https://leetcode.com/problems/max-chunks-to-make-sorted-ii/) 施工中...:gear: --- ## HW07 - Buy Phone ### Assignment Your program will take a two-dimensional integer array as input. Each element represents a smartphone model which contains two features (e.g. screen size and performance ranking). Please return an array containing a list of unbeatable smartphone models (In other words, filter out the phone models that can be beat by some model). Given two items A =(X<sub>a</sub>, Y<sub>a</sub>) and B =(X<sub>b</sub>, Y<sub>b</sub>), Item A beats Item B iff x<sub>a</sub>≥x<sub>b</sub> and y<sub>a</sub>≥y<sub>b</sub> | Example | Method Calling / Return | | ------- | ------------------------------------------ | | Input | `int[][] inputArr = {{1,1},{2,4},{2,10},{5,4},{4,8},{5,5},{8,4},{10,2},{10,1}}` | | Output | `int[][] bestPhone(inputArr) = {{2,10},{4,8},{5,5},{8,4},{10,2}}` | ### Abstract class ```java=! public abstract class Buy_Phone{ public abstract int[][] bestPhone(int[][] inputArr); } ``` ### Solution 施工中...:gear: --- ## HW08 - Buy Phone v2 ### Assignment Your program will take a six-dimensional integer array as input. Each element represents a smartphone model which contains **six** features (e.g. screen size, performance ranking and etc.). Please return an sorted array containing a list of unbeatable smartphone models (In other words, filter out the phone models that can be beaten by some model). The return array should be sorted by the first element of each array in the output. | Example | Method Calling / Return | | ------- | ------------------------------------------ | | Input | `int[][] inputArr = {{8,7,7,4,2,1},{2,4,4,6,2,1},{4,0,5,1,3,2},{5,2,4,3,7,3},{7,5,6,9,8,9}}` | | Output | `int[][] bestPhone(inputArr) = {{7,5,6,9,8,9},{8,7,7,4,2,1}}` | ### Abstract class ```java=! public abstract class Buy_Phone_v2{ public abstract int[][] bestPhone(int[][] inputArr); } ``` ### Solution 施工中...:gear: --- ## HW09 - LSD ### Assignment Your program will take a two-dimensional integer array as input. Each element in the array represents nodes lined together Please return the longest shortest-path in the given graph. Given a graph G = (V, E), find max<sub>u,v</sub> d(u, v), where d(u,v) denotes the shortest path length between node u and node v, for all possible u, v (In this home work, You may use `java.util.collections`、 `java.util.ArrayList` 、 `java.util.Stack`, but `java.util.*` is not allowed.) | Example | Method Calling / Return | | ------- | ------------------------------------------ | | Input | `int[][] array = {{0,1},{0,2},{0,4},{1,3},{1,4},{2,5},{6,7}}` | | Output | `int Distance(array) = 4` | ### Abstract class ```java=! public abstract class LSD{ public abstract int Distance(int[][] array); } ``` ### Solution 施工中...:gear: --- ## HW10 - Sorting ### Assignment Your program will take an integer array as input. Please return the sorted ascending array in the given array. | Example | Method Calling / Return | | ------- | ----------------------------------------- | | Input | `int[] A = {-1,2,5,9,8,7,1,3,2}` | | Output | `int[] sorting(A) = {-1,1,2,2,3,5,7,8,9}` | ### Abstract class ```java=! public abstract class SortingArray { public abstract int[] sorting(int[] A); } ``` ### Solution 施工中...:gear: --- ## HW11 - GroupCounting ### Assignment Your program will take two string array as input. The points corresponding to the same index in the array will be connected to form an edge. Please return the number of the groups in the given array. <details> <summary>Example</summary> <img src="https://i.imgur.com/cftSW8J.png" alt="Example"/> </details> | Example | Method Calling / Return | | ------- | ------------------------------------------ | | Input | `String[] A = {"A","B","B","C","B","D","F","G"}, B = {"E","E","C","D","D","E","H","H"}` | | Output | `int count(A,B) = 2` | ### Abstract class ```java=! public abstract class GroupCounting { public abstract int count(String[] A, String[] B); } ``` ### Solution 施工中...:gear:

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully