原创 Hive SQL(HQL)常用語法學習整理

HIVE介紹 參考 1、Hive 是基於 Hadoop 的一個數據倉庫工具,可以將結構化的數據文件映射爲一張數據庫表,並提供完整的 sql 查詢功能,可以將 sql 語句轉換爲 MapReduce 任務進行運行。其優點是學習成本

原创 【推薦系統實踐-01】推薦系統簡介

項亮老師的《推薦系統實踐》學習筆記​。​ 目錄 1、什麼是推薦系統 2、個性化推薦系統應用場景 3、推薦系統評測 推薦系統實驗方法 離線實驗 用戶調查 在線實驗 評測指標 用戶滿意度 預測準確度 覆蓋率 多樣性 新穎性

原创 LeetCode - 26: Remove Duplicates from Sorted Array

26、Remove Duplicates from Sorted Array Given a sorted array nums, remove the duplicates in-place such that each ele

原创 LeetCode - 35: Search Insert Position

35、Search Insert Position Given a sorted array and a target value, return the index if the target is found. If not,

原创 LeetCode - 14: Longest Common Prefix

public String longestCommonPrefix(String[] strs) { if (strs.length == 0) return ""; String prefix = strs[0