묻고 답해요
158만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
미해결
함수에 있는 printf가 안돼요.
// main.c #include "music.c" int main() { int choice, anser, data; while (1) { system("cls"); printf("\n\n\t 음악차트 프로그램 \n\n"); printf("\t 1. 전체차트 \t 2. 인기차트 \t 3. 나만의 차트 \t 4. 곡추가 \t 0. exit\n"); printf("\t choice : [ ]\b\b"); scanf("%d", &choice); while (getchar() != '\n'); switch (choice) { case 1: //1. 전체차트 { void songchartlist(); printf("전체차트출력\n"); } break; case 2: //2. 인기차트 break; case 3: //3. 나만의 차트 break; case 4: printf("\n\n 곡추가 \n\n"); printf("어디에 추가하시겠습니까?\n"); printf("\t 1. 맨앞 추가 \t 2. 중간 추가 \t 3. 맨뒤 추가 \t 4. 삭제 \t 5. 취소 \n"); scanf("%d", &anser); if(1 == anser) { //void insertfrontnode(); } break; case 0: exit(0); } printf("\n\n\t\t"); system("pause"); } return 0; } //music.c #include "music.h" #include <stdio.h> #include <stdlib.h> #include <string.h> song* head = NULL; void songchartlist() // 음악 { song* newsong = (song*)malloc(sizeof(song)); strcpy(newsong->title, "미아"); strcpy(newsong->artist, "아이유"); strcpy(newsong->lyrics, "우리 둘 담아 준 사진을 태워"); newsong->views = 0; newsong->next = NULL; head = newsong; printf("%s\n", newsong->title); while (getchar() != '\n'); } // music.h #include <stdio.h> typedef struct node{ //단순연결리스트 char title[50]; char artist[50]; char lyrics[200]; int views; int value; struct node* next; }song; void songchartlist(); //void insertfrontnode(); /*main.c, music.c, music.h 3가지 파일을 만들었습니다 case 1 을 실행시켜도 void songchartlist() 함수에 프린트가 안되는 이유를 알려주실 수 있나요?*/
-
해결됨김영한의 실전 자바 - 기본편
객체 향상된 for문 질문있습니다.
package class1.ex; public class MovieReviewMain2 { public static void main(String[] args) { MovieReview[] reviews = new MovieReview[2]; MovieReview inception = new MovieReview(); inception.title = "인셉션"; inception.review = "인생은 무한 루프"; reviews[0] = inception; MovieReview aboutTime = new MovieReview(); aboutTime.title = "어바웃 타임"; aboutTime.review = "인생 시간 영화"; reviews[1] = aboutTime; for (MovieReview review : reviews) { System.out.println("영화 제목: " + review.title + ", 리뷰: " + review.review); } } }MovieReview inception이라는 변수를 통해서 .(dot)으로 실제객체에 접근하는 것으로 알고 있습니다. 그러나, 향상된 for문에서는 MovieReview(클래스) 다음에 오는 review를 통해서 접근하여 영화제목과 리뷰를 출력하는 것으로 보입니다.여기서 질문이 있습니다.for(MovieReview review : reviews)이 구문에서 review는 어디서 온것인가요?review가 참조값에 접근할 수 있는 상세한 이유는 무엇일까요?답변부탁드립니다!
-
미해결풀스택을 위한 탄탄한 프런트엔드 부트캠프 (HTML, CSS, 바닐라 자바스크립트 + ES6) [풀스택 Part2]
코드샌드박스 관련 질문
코드샌드박스가 많이 바뀐것 같아요.create 샌드박스 눌러도 바닐라 자바스크립트가 뜨질 않습니다.그리고 js 파일에서 console.log('test) 쓰고 실행은 어떻게하고 콘솔창은 어디에 있는건지 궁금해요.
-
해결됨코딩테스트 [ ALL IN ONE ]
디코
디코를 사정이 있어 나가게 되어 다시 초대받을 수 있는지 궁금합니다.
-
해결됨자바 ORM 표준 JPA 프로그래밍 - 기본편
양방향 연관관계에서 객체끼리 연관관계를 맺어주는 이유
안녕하세요! 어쩌면 간단한 질문일 수도 있겠습니다만, 좀 헷갈려서 여쭤봅니다.양방향 연관관계를 맺어줄 때, 순수한 객체 관계를 고려하면 항상 양쪽다 값을 입력해야 한다고 강의에서 봤습니다. 그래서 연관관계 편의 메소드도 생성하고요.그런데 문득 궁금해졌습니다. 서로 관계를 맺어준 객체들은 어차피 해당 메소드가 종료되면 사라지지 않나요? 결국 DB에 외래키를 가진 테이블 연관관계로만 존재할텐데, 곧 소멸될(?) 객체끼리의 참조 관계 설정을 왜 해줘야 하나 궁금합니다.예를 들어 memberA에게 Team1의 참조 연관관계를 맺어준다고 해도 메소드가 종료되면 그 객체의 관계는 DB 테이블로만 남게 되니 아무 소용이 없지 않나 생각이 들었습니다.혹시 해당 요청 내의 메소드 안에서 수월한 비즈니스 로직 처리를 위해 일회성으로 객체끼리 참조 연관관계를 맺어주는 걸까요?
-
미해결MERN STACK 커뮤니티 : 시작부터 배포까지 알려주는 React
도와주세요
App - state값을 배열로 헀는 이에럭 뜨는데 콘솔로 찍어보면 프롭으로 넘긴 값이 객체로 들어오던데 왜그러는걸까요?
-
미해결파이썬 알고리즘 문제풀이 입문(코딩테스트 대비)
문제 접근법
안녕하세요 강사님.문제를 보고 dfs 구현이 더 맞다고 생각하여 다음과 같이 dfs 방식으로 접근해서 해결했는데, bfs 방식으로 푸는 것이 더 옳바른 방향인가요? 복잡도 등의 측면에서 강사님의 풀이가 더 좋을까요? import sys sys.stdin = open('in5.txt','r') def dfs(y,x): global cnt # 현재 섬 방문 표시 후 # 주변에 섬 더 있는지 탐색 arr[y][x] = 0 for i in range(8): nx = x + dx[i] ny = y + dy[i] if 0<=ny<=(N-1) and 0<=nx<=(N-1) and arr[ny][nx] == 1: dfs(ny,nx) if __name__ == '__main__': # 입력정보 저장하기 N = int(input()) # 격자판 크기 arr = [list(map(int,input().split())) for _ in range(N)] # 맵 정보 # 상하좌우대각선 탐색 변수 dx = [0,1,0,-1,-1,1,1,-1] dy = [-1,0,1,0,-1,-1,1,1] cnt = 0 # 섬 갯수 저장 # 맵 전부 탐색 for i in range(N): for j in range(N): # 만약 섬이 발견되면 dfs로 넘겨주기 if arr[i][j] == 1: dfs(i,j) cnt += 1 print(cnt)
-
해결됨깃헙 블로그(Github blog)로 차별화 된 나만의 홈페이지 만들기!
갑자기 bundle exec jekyll serve가 안됩니다.
PS C:\project\hwanklim.github.blog\hwanklim.github.io\hwanklim.github.io> bundle exec jekyll servejekyll 4.3.2 | Error: (C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/_config.yml): did not find expected key while parsing a block mapping at line 15 column 1C:/Ruby32-x64/lib/ruby/3.2.0/psych/parser.rb:62:in `_native_parse': (C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/_config.yml): did not find expected key while parsing a block mapping at line 15 column 1 (Psych::SyntaxError)from C:/Ruby32-x64/lib/ruby/3.2.0/psych/parser.rb:62:in `parse'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/safe_yaml-1.0.5/lib/safe_yaml/load.rb:143:in `load'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/safe_yaml-1.0.5/lib/safe_yaml/load.rb:157:in `block in load_file'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/safe_yaml-1.0.5/lib/safe_yaml/load.rb:157:in `open'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/safe_yaml-1.0.5/lib/safe_yaml/load.rb:157:in `load_file'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.2/lib/jekyll/configuration.rb:129:in `safe_load_file'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.2/lib/jekyll/configuration.rb:167:in `read_config_file'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.2/lib/jekyll/configuration.rb:198:in `block in read_config_files'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.2/lib/jekyll/configuration.rb:195:in `each'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.2/lib/jekyll/configuration.rb:195:in `read_config_files'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.2/lib/jekyll.rb:118:in `configuration'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.2/lib/jekyll/command.rb:44:in `configuration_from_options'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.2/lib/jekyll/commands/serve.rb:83:in `block (2 levels) in init_with_program'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/mercenary-0.4.0/lib/mercenary/command.rb:221:in `block in execute'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/mercenary-0.4.0/lib/mercenary/command.rb:221:in `each'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/mercenary-0.4.0/lib/mercenary/command.rb:221:in `execute'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/mercenary-0.4.0/lib/mercenary/program.rb:44:in `go'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/mercenary-0.4.0/lib/mercenary.rb:21:in `program'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/gems/jekyll-4.3.2/exe/jekyll:15:in `<top (required)>'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/bin/jekyll:25:in `load'from C:/project/hwanklim.github.blog/hwanklim.github.io/hwanklim.github.io/vendor/bundle/ruby/3.2.0/bin/jekyll:25:in `<main>' 이런게 계속 뜨는데 뭐가 문제 인지 모르겠습니다. config.yml 파일도 딱히 오타가 안보여서 고민입니다. comments: provider : "disqus" # false (default), "disqus", "discourse", "facebook", "staticman", "staticman_v2", "utterances", "giscus", "custom" disqus: shortname : "hwanklimnote" discourse: server : # https://meta.discourse.org/t/embedding-discourse-comments-via-javascript/31963 , e.g.: meta.discourse.org facebook: # https://developers.facebook.com/docs/plugins/comments appid : # num_posts : # 5 (default) colorscheme : # "light" (default), "dark" utterances: theme : # "github-light" (default), "github-dark" issue_term : # "pathname" (default) staticman: branch : # "master" endpoint : # "https://{your Staticman v3 API}/v3/entry/github/" 특히 15번 minimal_mistakes_skin부터 31번 comments까지 앞에 #만 붙여서 주석처리하면 bundle exec jekyll serve가 잘 돌아갑니다. 근데 comments의 어떤 부분이 문제인지는 모르겠습니다..
-
미해결습관부터 바꿔주는 Node.js & Express 기초
포매팅
강의하시면서 자동으로 띄어쓰기같은 포매팅이 되던데단축키인지 아니면 익스텐션인지 알 수 있을까용?
-
해결됨2시간으로 끝내는 프론트엔드 테스트 기본기
cypress와 함께 사용하면되는건가요?
Jest와 Cypress중에 하나만 사용 하라고 하셨는데storybook은 Jest와 함께 사용하거나 Cypress와 함께 사용해도 될까요?
-
미해결모두를 위한 대규모 언어 모델 LLM(Large Language Model) Part 1 - Llama 2 Fine-Tuning 해보기
llama 2 파인튜닝 Maximum length, Temperature
안녕하세요.저는 현재 llama2 모델을 KorQuad 데이터셋을 이용하여 파인튜닝하는 실습을 진행중에 있습니다.파인튜닝 후에 궁금한게 생겼는데, 강의에서 처럼 KorQuad 데이터셋을 이용하여 llama2 모델을 파인튜닝을 한 뒤에 Chat GPT API 처럼 Maximum length 나 Temperature 등을 파라미터로 넣어서 답변의 길이나 Temperature 를 조절 할 수 있을까요?
-
미해결따라하며 배우는 리액트 네이티브 기초
Remote notification 강의는 없을까요?
Remote notification 관련 내용은 안올라올까요?? ios local notification 강의에서 remote 강의가 나온다고 하셨는데 async storage 강의가 나와서요.
-
미해결3. 웹개발 코스 [스프링 프레임워크+전자정부 표준프레임워크]
안녕하세요, 다름이 아니라 톰캣 설치 과정에서 막히는 부분이 있어서 문의드립니다.
안녕하세요, 다름이 아니라 톰캣 설치 과정에서 막히는 부분이 있어서 문의드립니다.톰캣 8.5로 진행해야 하는데 하단 이미지에 보시다 시피8.0까지만 있고 8.5가 없어서 진행이 불가능합니다. 어떤 오류인지 문의드립니다!!
-
미해결
로그인 후에 무한 스크롤이 안 됩니다.
크림에 크롤링을 응용해 볼려고 접속 후 로그인까지는 성공했는데 그 이후 무한 스크롤 내리는 것이 안 됩니다... 아무래도 로그인하고나서의 브라우저를 인식하지 못하는 거 같은 데 어떻게 해결하면 될까요? from selenium import webdriver from selenium.webdriver.chrome.service import Service from selenium.webdriver.common.keys import Keys from selenium.webdriver.chrome.options import Options from selenium.webdriver.common.by import By import csv # 크롬 드라이버 자동 업데이트 from webdriver_manager.chrome import ChromeDriverManager import time import pyautogui import pyperclip # 브라우저 꺼짐 방지 Chrome_options = Options() Chrome_options.add_experimental_option("detach", True) #불필요한 에러 메시지 없애기 Chrome_options.add_experimental_option("excludeSwitches",["enable-logging"]) service = Service(executable_path=ChromeDriverManager().install()) driver = webdriver.Chrome(service=service, options=Chrome_options) # 웹페이지 해당 주소 이동 driver.implicitly_wait(5) # 웹페이지 로딩 5초는 대기 driver.maximize_window() # 화면 최대화 ###################################################### ###################################################### #"nike" 브랜드로 driver.get("https://kream.co.kr/brands/nike") login = driver.find_element(By.CSS_SELECTOR,"#__layout > div > div.gnb > div > div.header_top > div > ul > li:nth-child(5) > a") login.click() #아이디 입력창 id = driver.find_element(By.CSS_SELECTOR,"#wrap > div.container.login > div > div > div:nth-child(2) > div") id.click() pyperclip.copy("아이디") pyautogui.keyDown("command") pyautogui.press("v") pyautogui.keyUp("command") time.sleep(2) #비밀번호 입력창 pw = driver.find_element(By.CSS_SELECTOR,"#wrap > div.container.login > div > div > div:nth-child(3) > div") pw.click() pyperclip.copy("비번") pyautogui.keyDown("command") pyautogui.press("v") pyautogui.keyUp("command") time.sleep(2) #로그인 버튼 클릭 login_btn = driver.find_element(By.CSS_SELECTOR, '#wrap > div.container.login > div > div > div.login_btn_box > a') login_btn.click() #반복문 시작 while True: # 맨 아래로 스크롤 내린다. driver.find_element(By.CSS_SELECTOR, "body").send_keys(Keys.END) # 스크롤 사이 페이지 로딩 시간 time.sleep(1) # 스크롤 후 높이 after_h = driver.execute_script("return window.scrollY") if after_h == before_h: break before_h = after_h
-
미해결[코드팩토리] [초급] NestJS REST API 백엔드 완전 정복 마스터 클래스 - NestJS Core
common.service 의 cursorPaginate 일반화 할때 nextUrl 생성시 질문입니다.
common.service 의 cursorPaginate 일반화 관련 질문입니다.nextUrl 생성할 때 아래와 같이 searchParams 를 생성하는데 이 부분은 일반화 할 수없는건가요?if (nextUrl) { for (const key of Object.keys(dto)) { if (dto[key]) { if ( key !== 'where__id__more_than' && key !== 'where__id__less_than' ) { nextUrl.searchParams.append(key, dto[key]); } } } let key = null; if (dto.order__createdAt === 'ASC') { key = 'where__id__more_than'; } else { key = 'where__id__less_than'; } nextUrl.searchParams.append(key, lastItem.id.toString()); }
-
해결됨Vue3 완벽 마스터: 기초부터 실전까지 - "실전편"
15_modal_teleport > AppModal.vue -> defineEmits
PostModal.vue 컴포넌트 분리 후에 AppModal.vue부분에 defineEmits(['close' , ... ]) 'close'는 AppModal에서 상위컴포넌트로 전달하는 것이 따로 없는 것같은데 'close'가 남겨져 있더라구요!여기서 'close'는 어떤 역할을 하는걸까요?
-
미해결
React-native 안드로이드 스튜디오 설치 오류
react-native 설치할 때 안드로이드 스튜디오가 자꾸 튕겨서 프로젝트를 진행하지 못하고 있습니다 ㅠㅠ 도와주세요. 나머지 파일은 잘 설치했는데 안드로이드 스튜디오가 문제입니다. Error: The emulator (INFO | Storing crashdata in: C:\Users\green\AppData\Local\Temp\\AndroidEmulator\emu-crash-34.1.13.db, detection is enabled for process: 3904) quit before it finished opening. You can try starting the emulator manually from the terminal with: C:\Users\green\AppData\Local\Android\Sdk/emulator/emulator @INFO | Storing crashdata in: C:\Users\green\AppData\Local\Temp\\AndroidEmulator\emu-crash-34.1.13.db, detection is enabled for process: 3904 이런 오류가 나는데 어떻게 하나요
-
해결됨실습으로 배우는 프로메테우스 - {{ x86-64, arm64 }}
ova 이미지 m-k8s-1.24.4 이미지 root 계정 암호 문의
[질문 하기]OVA 이미지로 실습하기 위해 이미지 다운로드 후 superputty에서 Sessions(k8s).XML 파일 session Import하여 접속하였으나, root 계정에 대해 password를 몰라서 접속이 안됩니다. 수업에서는 자동 접속되는데, 정보 관련 자료를 찾을 수 없어서 문의 드려요.
-
미해결자바 ORM 표준 JPA 프로그래밍 - 기본편
parsistence.xml h2.Driver 에러
학습하는 분들께 도움이 되고, 더 좋은 답변을 드릴 수 있도록 질문전에 다음을 꼭 확인해주세요.1. 강의 내용과 관련된 질문을 남겨주세요.2. 인프런의 질문 게시판과 자주 하는 질문(링크)을 먼저 확인해주세요.(자주 하는 질문 링크: https://bit.ly/3fX6ygx)3. 질문 잘하기 메뉴얼(링크)을 먼저 읽어주세요.(질문 잘하기 메뉴얼 링크: https://bit.ly/2UfeqCG)질문 시에는 위 내용은 삭제하고 다음 내용을 남겨주세요.=========================================[질문 템플릿]1. 강의 내용과 관련된 질문인가요? (예/아니오)예2. 인프런의 질문 게시판과 자주 하는 질문에 없는 내용인가요? (예/아니오)예3. 질문 잘하기 메뉴얼을 읽어보셨나요? (예/아니오)예[질문 내용]여기에 질문 내용을 남겨주세요.pom.xml<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>jpa-basic</groupId> <artifactId>ex1-hello-jpa</artifactId> <version>1.0.0</version> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>17</source> <target>17</target> </configuration> </plugin> </plugins> </build> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> </properties> <dependencies> <!-- JPA 하이버네이트 --> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>5.4.29.Final</version> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.3.1</version> </dependency> <!-- H2 데이터베이스 --> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>2.2.224</version> <scope>runtime</scope> </dependency> <!-- logback --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.2.3</version> </dependency> <dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.1-api</artifactId> <version>1.0.0.Final</version> </dependency> </dependencies> </project> persistence.xml<?xml version="1.0" encoding="UTF-8"?> <persistence version="2.2" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_2.xsd"> <persistence-unit name="hello"> <properties> <!-- 필수 속성 --> <property name="javax.persistence.jdbc.driver" value="org.h2.Driver"/> <property name="javax.persistence.jdbc.user" value="sa"/> <property name="javax.persistence.jdbc.password" value=""/> <property name="javax.persistence.jdbc.url" value="jdbc:h2:tcp://localhost/~/test"/> <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/> <!-- 옵션 --> <property name="hibernate.show_sql" value="true"/> <property name="hibernate.format_sql" value="true"/> <property name="hibernate.use_sql_comments" value="true"/> <!--<property name="hibernate.hbm2ddl.auto" value="create" />--> </properties> </persistence-unit> </persistence> 인프런에 올라온 관련 질문에 대한 해결책들을 다 따라 해봤는데 이 에러가 사라지지 않습니다.
-
미해결스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술
hello 에서 404 에러 뜹니다
학습하는 분들께 도움이 되고, 더 좋은 답변을 드릴 수 있도록 질문전에 다음을 꼭 확인해주세요.1. 강의 내용과 관련된 질문을 남겨주세요.2. 인프런의 질문 게시판과 자주 하는 질문(링크)을 먼저 확인해주세요.(자주 하는 질문 링크: https://bit.ly/3fX6ygx)3. 질문 잘하기 메뉴얼(링크)을 먼저 읽어주세요.(질문 잘하기 메뉴얼 링크: https://bit.ly/2UfeqCG)질문 시에는 위 내용은 삭제하고 다음 내용을 남겨주세요.=========================================[질문 템플릿]1. 강의 내용과 관련된 질문인가요? (예/아니오)2. 인프런의 질문 게시판과 자주 하는 질문에 없는 내용인가요? (예/아니오)3. 질문 잘하기 메뉴얼을 읽어보셨나요? (예/아니오)[질문 내용]여기에 질문 내용을 남겨주세요.