본문 바로가기

알고리즘28

[알고리즘 - 기초] Python 인접 리스트 구현하기 ( feat. 유향 | 무향 ) 🏃🏻 들어가며DFS / BFS 구현 과정에서 데이터를 입력 받아 정리할때 사용하는 인접 리스트와 인접 행렬 방식이 있으며,이번 글에서는 그중에서도 인접 리스트에 대해서 정리해 보았습니다. 이번글에서는 아래의 3가지 내용을 소개하고자 합니다.첫번째로는 인접 리스트 구현 ( 유향  ) 두번째로는 인접 리스트 구현 ( 무향 ) 세번째로는 실제 PS 에서 사용하는 방식  ✅  인접 리스트 구현하기정점과 간선으로 이루어져 있는 그래프 구조의 데이터를 1) 유향 ( 방향성이 있는 간선 ) 인접 리스트 구현하기1-1) 유향 ( 방향성이 있는 간선 ) 인접 리스트 1-2) 실행 결과 1-3) 인접 리스트 구현class DirectedGraph: def init(self): self.adjace.. 2024. 11. 13.
[CodeWars] javascript - 6kyu : Returning Strings 기본적인 문제는 문제풀이 없이 Solution만 작성되어 있습니다. Title Returning Strings Description Make a function that will return a greeting statement that uses an input; your program should return, "Hello, how are you doing today?". [ Example Output ] 'Naver'// => "Hello, Naver how are you doing today?". 'Google'// => "Hello, Google how are you doing today?". 'Daum'// => "Hello, Daum how are you doing today?". Test C.. 2020. 8. 10.
[CodeWars] javascript - 6kyu : Will the present fit? 기본적인 문제는 문제풀이 없이 Solution만 작성되어 있습니다. Title Will the present fit? Description Santa's elves are boxing presents, and they need your help! Write a function that takes two sequences of dimensions of the present and the box, respectively, and returns a Boolean based on whether or not the present will fit in the box provided. The box's walls are one unit thick, so be sure to take that in to account... 2020. 7. 28.
[백준] javascript - 2742번 : 기찍 N 기본적인 문제는 문제풀이 없이 Solution만 작성되어 있습니다. Title 기찍 N Description 자연수 N이 주어졌을 때, N부터 1까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오. [ Example Input ] 첫째 줄에 100,000보다 작거나 같은 자연수 N이 주어진다. 5 [ Example Output ] 첫째 줄부터 N번째 줄 까지 차례대로 출력한다. 5 4 3 2 1 Solution const fs = require('fs'); const input = fs.readFileSync('/dev/stdin').toString().split(' ') const RANGE_VALUE = Number(input) for(let i=RANGE_VALUE; i>=1; i--){ conso.. 2020. 7. 27.
반응형