본문 바로가기

전체 글

(116)
자바 | 백준 | 12100 | 2048(Easy) Solution: 이동횟수가 5가 될 때까지 DFS 탐색 한 번 할 때마다 사방으로 옮긴 경우를 모두 구함 package BOJ; import java.io.*; import java.util.*; public class BOJ_12100_2048_Easy { static int N; static int[][] map; static Deque dq; static int max = 0; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); N = Integer.parseInt(br.readLine()); map = new ..
자바 | 프로그래머스 | 단어변환 https://programmers.co.kr/learn/courses/30/lessons/43163 코딩테스트 연습 - 단어 변환 두 개의 단어 begin, target과 단어의 집합 words가 있습니다. 아래와 같은 규칙을 이용하여 begin에서 target으로 변환하는 가장 짧은 변환 과정을 찾으려고 합니다. 1. 한 번에 한 개의 알파벳만 바꿀 수 programmers.co.kr import java.util.*; class Solution { public int solution(String begin, String target, String[] words) { int answer = 0; int[] visited = new int[words.length]; // 초기 큐 설정 Queue q =..
자바 | 프로그래머스 | 네트워크 https://programmers.co.kr/learn/courses/30/lessons/43162 코딩테스트 연습 - 네트워크 네트워크란 컴퓨터 상호 간에 정보를 교환할 수 있도록 연결된 형태를 의미합니다. 예를 들어, 컴퓨터 A와 컴퓨터 B가 직접적으로 연결되어있고, 컴퓨터 B와 컴퓨터 C가 직접적으로 연결되어 있 programmers.co.kr Solution 그냥 dfs돌리면 된다.. class Solution { static boolean[] visited; public int solution(int n, int[][] computers) { int answer = 0; visited = new boolean[n]; for (int i=0;i
자바 | 프로그래머스 | 타겟 넘버 https://programmers.co.kr/learn/courses/30/lessons/43165?language=java class Solution { static int answer; public int solution(int[] numbers, int target) { answer = 0; dfs(0, 0, 0, numbers.length, numbers, target); return answer; } void dfs(int cnt, int start, int res, int N, int[] numbers, int target){ if (cnt==N){ if (res==target){ answer++; } return; } for (int i=start; i
[Vue warn]: Error in render: "TypeError: Cannot read property '0' of undefined" 비동기: html 생성 전에 데이터가 안 불러와져서
google places api https://developers.google.com/maps/documentation/places/web-service/search#PlaceSearchRequests Place Search | Places API | Google Developers Deprecation notice: Places field permanently_closed is deprecated Notice: The Places field permanently_closed is deprecated as of May 26, 2020, and will be turned off on May 26, 2021. Use the business_status field to return the operational status of busine ..
Vue google map api apthttps://www.digitalocean.com/community/tutorials/vuejs-vue-google-maps How To Use Google Maps in Vue with vue-google-maps | DigitalOcean Learn how to create an embedded Google Map with search and autocomplete support in Vue with vue-google-maps. www.digitalocean.com
LOAD DATA "Invalid utf8mb4 character string csv 형식 utf-8로 바꿈