Published onJune 26, 2024Recommended Materials for AI/MLAImachine-learningbookscoursesThis list provides a curated selection of books and courses that are highly recommended for learning artificial intelligence and machine learning.
Published onJune 23, 2024Diving into the Exciting AI/ML Field!2024-google-ML-bootcampAImachine-learningdeep-learningmathematicsbefore kick-starting a journey to the world of AI/ML, there are some things to do first.
Published onJune 22, 2024Sort Listpythonalgorithmlinked-listsortingGiven the head of a linked list, return the list after sorting it in ascending order.
Published onJune 20, 2024Implement Trie(Prefix Tree)pythonalgorithmtreeTrieA trie(prefix tree) is a tree data structure used to efficiently store and retrieve keys in a dataset of strings. Implement the Trie class.
Published onJune 19, 2024K-th Largest Element in an arraypythonalgorithmtreeDFSBinary-search-treeGiven an integer array nums and an integer k, return the kth largest element in the array.