← 所有標籤

#程式

7 篇

2016
[LeetCode] Longest Substring Without Repeating Characters 求出不重覆字母下最長的子字串長度 (No.3)
Given a string, find the length of the longest substring without repeating characters.
Java程式LeetCode
[Java] 使用JavaMail從GMail寄信以及使用EWS API從Exchange寄信
今天在研究如何使用Java Mail的API從GMail寄信出去,以及使用EWS API從Exchange寄信,寫了一些測試用的Code分享給大家。
Java程式
[LeetCode] Two Sum 兩兩相加 (No.1)
Given an array of integers, return indices of the two numbers such that they add up to a specific target.
Java程式LeetCode
[LeetCode] Execel Sheet Column Title 表單標題翻譯 (No.168)
Given a positive integer, return its corresponding column title as appear in an Excel sheet.
Java程式LeetCode
[LeetCode] Dungeon Game 地牢遊戲 (No.174)
The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a dungeon.
Java程式LeetCode
[LeetCode] 前言
最近發現了一個不錯的網站,叫做LeetCode,這個網站裡面有著大量的題目,大部份都是在面試程式設計時常常被問到的問題,很適合想要找工作的人來練練手,又或是覺得自己的技術底不夠,想要再加強的人,來練習一下。
JavaT程式LeetCode
2015
[心得] TDD已死?總結一下最近我對於程式測試的想法
最近在研究程式設計的測試部份,總結一下我目前對測試的看法, 因此如果覺得測試是狗屁的,可以跳過不看這篇文章; 而如果想要了解更多測試的知識,可以參考一下: -
Programming程式TDD心得UT