Encode and Decode Strings Design an algorithm to encode a list of strings to a string. The encoded s...
Product of Array Except Self Problem Description Given an integer array nums, return an array answer...
Group Anagrams Problem Description Given an array of strings strs, group the anagrams together. You...
Top K Frequent Elements Problem Description Given an integer array nums and an integer k, return the...
Valid Anagram Given two strings s and t, return true if t is an anagram of s, and false otherwise. A...
contain duplicate Problem Description Given an integer array nums, return true if any value appears ...
two sum Problem Description Given an array of integers nums and an integer target, return indices of...
圖解 blind 75: Array & HashTable 前言 本篇主要是介紹這個類型題目所會用到的演算法及資料結構 以下分別針對 Array 與 HashTable 做概念性介紹 Arr...
剛開始在開發公司網站時 由於公司起初沒有後端 於是只能build出來讓老闆追蹤進度 所以選擇了HashRouter 但HashRouter顧名思義 會在/前方出現一個# 部屬後一樣會出現這個問題 到了...
Hash Table是一種有key value的資料結構~ 我們能在Hash Table中存入一個value然後將它對應到key~ 其目的是為了~ 加快程式訪問value的速度(O(1))~ 學習目...