置頂文章

22k 20 分鐘

ChienI Kao 筆記網站 JHTNT 筆記網站 # 前言 這是一份關於計畫的紀錄,由我的指導教授與學長提供的資料開始進行研究,主要是要撰寫一個基於深度學習與強化學習麻將對局的程式,希望可以寫出一個臺灣麻將與日本麻將。 # 參考論文 應用深度學習與強化學習於臺灣麻將對局程式之研究 Research on Applying Deepp Learning and Reinforcement Learning to Taiwanese Mahjong Program 指導教授:黃國展 撰寫者:陳昕斈 #...

精選分類

Artificial-Intelligence

資訊工程

HPC

資訊工程

Website

資訊工程

Leetcode

解題筆記

CPE

解題筆記

Programming Language

資訊工程

英文

語言

文章列表

2k 2 分鐘

⭐️⭐️⭐️ # 題目敘述 You are given a 0-indexed array of positive integers nums. In one operation, you can swap any two adjacent elements if they have the same number of set bits. You are allowed to do this operation any number of times (including zero). Return true if you can sort the array, else return...
324 1 分鐘

# Large Language Model 模型 大語言模型 之所以被稱為 large,是因為他是經過大量資料進行訓練的模型。 發展過程經歷了:機器學習 -> 神經元 -> 神經網路 -> 深度學習 -> RNN (Recurrent neural network) -> LSTM (Long Short-Term Memory) -> LM (Language model) -> LLM (Large Language...
357 1 分鐘

# module 簡介 專門管理環境變數的工具,全程是 module environment,一般應用於軟體或運行庫等設備有多個版本,且需要分別配置這些環境變數。 module ava# 使用權限 切換為根使用者 user@vm:~$ sudo su -# 增加使用者 sudo 權限 user@vm:~$ sudo adduser [user name] sudo# 移除使用者 sudo 權限 user@vm:~$ sudo deluser [user name] sudo# 使用者相關設定 # 新增使用者 執行下方指令可以新增一位使用者,在 user name...
969 1 分鐘

⭐️ # 題目敘述 Given a string array words , return an array of all characters that show up in all strings within the words (including duplicates). You may return the answer in any order. # Example 1 Input: words = ["bella","label","roller"] Output:...
939 1 分鐘

⭐️ # 題目敘述 Given a string s which consists of lowercase or uppercase letters, return the length of the longest palindrome that can be built with those letters. Letters are case sensitive, for example, "Aa" is not considered a palindrome. Palindrome A palindrome is a string that...
1.2k 1 分鐘

⭐️⭐️ # 題目敘述 You are given two strings s and t consisting of only lowercase English letters. Return the minimum number of characters that need to be appended to the end of s so that t becomes a subsequence of s . A subsequence is a string that can be derived from another string by deleting some or no...