畢竟HHKB的鍵位真的需要重新適應,再加上那價格……一個鍵盤就要24840日幣……
用當時接近0.3的匯率來算,大概是快要7500台幣啊……
但因為被同事說我用紅軸打字的聲音太吵,我一怒之下就上網研究了HHKB Type-S跟HHKB BT要怎麼訂購,然後在去年(2016)國慶連假去日本玩的時候就順便一起帶回來了。
所以有的時候計畫趕不上變化,變化比不上同事一句G8話。
(HHKB Type-S整體)
分享我玩各種3C產品、電腦、伺服器、程式設計的相關心得
"abcabcbb"
, the answer is "abc"
, which the length is 3."bbbbb"
, the answer is "b"
, with the length of 1."pwwkew"
, the answer is "wke"
, with the length of 3. Note that the answer must be a substring, "pwke"
is a subsequence and not a substring.private static void sendFromGMail(String from, String pass, String[] to, | |
String subject, String body) { | |
Properties props = System.getProperties(); | |
String host = "smtp.gmail.com"; | |
// 下面設定是根據GMail官方文件所寫的,開啟TLS以及SMTP AUTH | |
props.put("mail.smtp.starttls.enable", "true"); | |
props.put("mail.smtp.host", host); | |
props.put("mail.smtp.user", from); | |
props.put("mail.smtp.password", pass); | |
props.put("mail.smtp.port", "587"); | |
props.put("mail.smtp.auth", "true"); | |
Session session = Session.getDefaultInstance(props); | |
MimeMessage message = new MimeMessage(session); | |
try { | |
message.setFrom(new InternetAddress(from)); | |
InternetAddress[] toAddress = new InternetAddress[to.length]; | |
// To get the array of addresses | |
for (int i = 0; i < to.length; i++) { | |
toAddress[i] = new InternetAddress(to[i]); | |
} | |
for (int i = 0; i < toAddress.length; i++) { | |
message.addRecipient(Message.RecipientType.TO, toAddress[i]); | |
} | |
message.setSubject(subject); | |
message.setText(body); | |
Transport transport = session.getTransport("smtp"); | |
transport.connect(host, from, pass); | |
transport.sendMessage(message, message.getAllRecipients()); | |
transport.close(); | |
} catch (AddressException ae) { | |
ae.printStackTrace(); | |
} catch (MessagingException me) { | |
me.printStackTrace(); | |
} | |
} |
Given nums = [2, 7, 11, 15], target = 9, Because nums[0] + nums[1] = 2 + 7 = 9, return [0, 1].
A -> 1 B -> 2 C -> 3 ... Z -> 26 AA -> 27 AB -> 28