解題程式碼
var isValidSudoku = function (board) {
const posSet = new Set();
for...
Problem :
You are a professional robber planning to rob houses along a street. E...
前言
今天要解的題目是 Search Insert Position(搜尋插入位置)。
題目要求我們在一個已經排序好的陣列中找到目標數字的位置。
如果找到目...
Given a string word, return the sum of the number of vowels ('a', 'e', 'i', 'o',...
題目 141:「環形鏈結 (Linked List Cycle)」 是一道經典的鏈結串列問題,目標是判斷一個單向鏈結串列是否包含環(cycle)。環形鏈結是指在...
題目 SQLiLite
這是個簡單的sqli的問題
輸入 : ' or 2=2--
這像是把--後面都註解
預防方法#1:Query Parameterizat...