Articles in this series
Using TypeScript to Retrieve Values from Input Fields · import { useState } from "react"; function ToDoList() { const [value, setValue] =...
Exploring the Power of findIndex · Could you try to solve the below problem? Please complete the solution function to return the index of the first...
Monday morning, I received a request from a customer to show the sales price with the first decimal place in the Enterprise Programme. I've googled...
문제 설명 정수 배열 num_list와 정수 n이 매개변수로 주어집니다. num_list를 다음 설명과 같이 2차원 배열로 바꿔 return하도록 solution 함수를 완성해주세요. num_list가 [1, 2, 3, 4, 5, 6, 7, 8] 로 길이가 8이고 n이...
new Set() · 문제 설명 문자열 my_string이 매개변수로 주어집니다. my_string에서 중복된 문자를 제거하고 하나의 문자만 남긴 문자열을 return하도록 solution 함수를 완성해주세요. 제한사항 1 ≤ my_string ≤...
정규표현식 · 정규 표현식(Regular Expression)이란? 일정한 패턴을 가진 문자열의 집합을 표현하기 위해 사용하는 형식 언어(formal language) 문자열을 대상으로 패턴 매칭 기능 제공 (패턴 매칭 기능이란 특정 패턴과 일치하는 문자열을 검색하거나...