There are two sorted arrays nums1 and nums2 of size m and n respectively.
Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).
2017年8月1日 星期二
2017年7月13日 星期四
LeetCode題解 - 3. Longest Substring Without Repeating Characters [Medium]
Given a string, find the length of the longest substring without repeating characters.
LeetCode題解 - 2. Add Two Numbers [Medium]
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
You may assume the two numbers do not contain any leading zero, except the number 0 itself.
LeetCode題解 - 1. Two Sum [Easy]
1. Two Sum
Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
2017年4月4日 星期二
2017年3月31日 星期五
快速架一個 CI Server - 其它環境建置
安裝其它環境時的筆記,以後也許還用的著呢
Environment Setup
- MySQL 5.7
- Maven 3.3.9
- Sencha Cmd & ExtJS
2017年3月30日 星期四
快速架一個 CI Server - Jenkins 環境建置
本篇主要目的為建立 Jenkins 環境,關於 Jenkins 設定則另外介紹
Linux 作業系統就不多說了,我是安裝在 VM 上
Jenkins 官網中並沒有說明記憶體最低需求,但建議給 16GB (您真是愛開玩笑呢)
我給它 6GB,Jenkins plugins 不要裝太多還夠用
Environment Setup
- CentOS Linux release 7.3.1611 (Core)
- JDK 1.7.0.131
- Tomcat 7.0.76
- Jenkins 2.48
Linux 作業系統就不多說了,我是安裝在 VM 上
Jenkins 官網中並沒有說明記憶體最低需求,但建議給 16GB (您真是愛開玩笑呢)
我給它 6GB,Jenkins plugins 不要裝太多還夠用
2017年2月27日 星期一
Python setup.py 簡易研究
最近在公司開發 Python 專案時,有一些需求
上述兩點都可以使用 Python Setup.py 來實現,所以要先了解 Setup.py 怎麼撰寫
- 保護 Source code 的方法。網路上其實可以找到很多方法,像是代碼混淆、加密、打包成一個可執行檔以及利用 Cython 將 Python 檔案轉換為 C,然後編繹成 Library 檔案 (Windows 為 pyd 檔案 , Linux 為 so 檔案)。最終採用了最後兩種方法
- 大多的專案最終都會有重覆的程式,所以想寫一個共用 Library 供開發使用
上述兩點都可以使用 Python Setup.py 來實現,所以要先了解 Setup.py 怎麼撰寫
訂閱:
文章 (Atom)