Algorithm13 [DP] LCS Longest Common Subsequence(최장 공통 부분 문자열) public int LCS(String str1, String str2) { int M=str1.length(); int N=str2.length(); int[][] dp=new int[M+1][N+1]; for(int i=1; i 2022. 11. 1. [DP]LIS Longest Increasing Subsequence(최장 증가 부분배열) public int LIS(int[] arr) { int res=0; int[] dp=new int[60000]; dp[0]=1; for(int i=1; i 2022. 11. 1. [Two Point]uglyNumbers 2,3,5의 소인수로만 이루어진 수를 배열로 나타내었을 때 n번째 수를 구하기 public int uglyNumbers(int n) { int arr[]=new int[n+1]; arr[1]=1; int two=1; int three=1; int five=1; int min; for(int i=2; i 2022. 11. 1. Rest API import requests import json url = "http://worldtimeapi.org/api/timezone/Asia/Seoul" data = requests.get(url).json() res = data["week_number"] print(res) requests 라이브러리를 사용하여 get 메서드로 url을 파라미터에 넣고 결괏값을 json 형태로 가져온다 결괏값에 해당 key 값을 대괄호에 넣고 붙여주면 해당 값의 value 값이 나온다. 2022. 10. 20. 이전 1 2 3 4 다음