[leetcode-706] Design HashMap
·
🐢 One step
LeetCode-706 Design HashMap : Design a HashMap without using any built-in hash table libraries. note : At most 104 calls will be made to put, get, and remove.Answer :::python class ListNode: def init(self, key=None, value=None): self.key = key self.value = value self.next = None class MyHashMap: def init(self): self.size = 10**4 self.table = collections.defaultdict(ListNode) def put(self, key: i..
[LLM] ChatGPT Prompt Engineering for Developers - Chatbot
·
🛠️ Tools/🤖 ChatGPT
ChatGPT Prompt Engineering for Developers What you’ll learn in this course In ChatGPT Prompt Engineering for Developers, you will learn how to use a large language model (LLM) to quickly build new and powerful applications. Using the OpenAI API, you’ll... www.deeplearning.ai ChatGPT Prompt Engineering for Developers 7 - Chatbot 정리 Setup import openai def get_completion(prompt, model="gpt-3.5-tur..
[LLM] ChatGPT Prompt Engineering for Developers - Expanding
·
🛠️ Tools/🤖 ChatGPT
ChatGPT Prompt Engineering for Developers What you’ll learn in this course In ChatGPT Prompt Engineering for Developers, you will learn how to use a large language model (LLM) to quickly build new and powerful applications. Using the OpenAI API, you’ll... www.deeplearning.ai ChatGPT Prompt Engineering for Developers 6 - Expanding 정리 Setup import openai import os from dotenv import load_dotenv, f..
[LLM] ChatGPT Prompt Engineering for Developers - Transforming
·
🛠️ Tools/🤖 ChatGPT
https://www.deeplearning.ai/short-courses/chatgpt-prompt-engineering-for-developers/ ChatGPT Prompt Engineering for Developers What you’ll learn in this course In ChatGPT Prompt Engineering for Developers, you will learn how to use a large language model (LLM) to quickly build new and powerful applications. Using the OpenAI API, you’ll... www.deeplearning.ai ChatGPT Prompt Engineering for Develo..
[leetcode-38] Count and Say
·
🐢 One step
LeetCode-38 Count and Say : The count-and-say sequence is a sequence of digit strings defined by the recursive formula: note : To determine how you "say" a digit string, split it into the minimal number of substrings such that each substring contains exactly one unique digit. Then for each substring, say the number of digits, then say the digit. Finally, concatenate every said digit.Answer :::py..
[LLM] ChatGPT Prompt Engineering for Developers - Inferring
·
🛠️ Tools/🤖 ChatGPT
https://www.deeplearning.ai/short-courses/chatgpt-prompt-engineering-for-developers/ ChatGPT Prompt Engineering for Developers What you’ll learn in this course In ChatGPT Prompt Engineering for Developers, you will learn how to use a large language model (LLM) to quickly build new and powerful applications. Using the OpenAI API, you’ll... www.deeplearning.ai ChatGPT Prompt Engineering for Develo..
[LLM] ChatGPT Prompt Engineering for Developers - Summarizing
·
🛠️ Tools/🤖 ChatGPT
https://www.deeplearning.ai/short-courses/chatgpt-prompt-engineering-for-developers/ ChatGPT Prompt Engineering for Developers What you’ll learn in this course In ChatGPT Prompt Engineering for Developers, you will learn how to use a large language model (LLM) to quickly build new and powerful applications. Using the OpenAI API, you’ll... www.deeplearning.ai 3 - Summarizing 정리 Setup import opena..
[LLM] ChatGPT Prompt Engineering for Developers - Iterative
·
🛠️ Tools/🤖 ChatGPT
https://www.deeplearning.ai/short-courses/chatgpt-prompt-engineering-for-developers/ ChatGPT Prompt Engineering for Developers What you’ll learn in this course In ChatGPT Prompt Engineering for Developers, you will learn how to use a large language model (LLM) to quickly build new and powerful applications. Using the OpenAI API, you’ll... www.deeplearning.ai ChatGPT Prompt Engineering for Develo..
다했다
'분류 전체보기' 카테고리의 글 목록 (22 Page)