YCYung Ching KWOKinyung.hashnode.dev·Jul 23, 2024 · 2 min readOllama in 10 minutesAccording the official website, Ollama is "Get up and running with large language models." In order words, it is a docker container for LLM. You can install the container and then load the LLMs and then you could interact with. Install Ollama Go to h...00
YCYung Ching KWOKinyung.hashnode.dev·Jun 25, 2024 · 1 min readSolving Puzzle: Death first search ep1https://www.codingame.com/ide/puzzle/death-first-search-episode-1 This game need to identify shortest path between 2 node. Firstly, I build a 2D array to represent a map with link 2 nodes. 0123 00110 11010 21001 30110 Next we need to find...00
YCYung Ching KWOKinyung.hashnode.dev·Jun 19, 2024 · 1 min readSolving Puzzle: There is no spoon ep.1https://www.codingame.com/ide/puzzle/there-is-no-spoon-episode-1 This tasks is to list all node and their right and bottom neighbor. push the coordinate of the node to String array with key "i j" through the array and check whether there right and ...00
YCYung Ching KWOKinyung.hashnode.dev·Jun 17, 2024 · 2 min readSolving puzzle: The-Labylinthhttps://www.codingame.com/ide/puzzle/the-labyrinth There are 2 objectives in this puzzle: Find the control room (C) Back to starting point (T) after control room found. Objective 1: Find the control room (C) The map provided are not good for co...00