본문 바로가기

Study146

[Kotlin] Intellij에서 Anroid 세팅 먼저 jetbrains 사이트에서 Intellij를 다운로드 받습니다. IntelliJ IDEA: The Capable & Ergonomic Java IDE by JetBrains A Capable and Ergonomic Java IDE for Enterprise Java, Scala, Kotlin and much more... www.jetbrains.com 저는 무료 버전인 Community를 다운로드 받았습니다. 설치가 완료된 후, New Project 버튼을 클릭합니다. 이후 New Project의 Android 탭을 클릭한 뒤, Install SDK 버튼을 클릭하여 설치를 진행합니다. (SDK 설치 이전에 JDK를 먼저 설치해야 하는데 저는 OpenJDK 11를 설치했습니다.) SDK 설치가 .. 2022. 1. 4.
[Python] resolve "failed to create process." issue Offline에서 Python Package를 다운로드 받으려고 시도했으나 어떤 이유인지 일부 Package(Frida)는 설치가 되지 않았습니다. 그래서 최후의 방법으로 Python 폴더를 통째로 옮기려고 했으나 "failed to create process."라는 에러를 볼 수 있었습니다. I tried to download Python Package from Offline, but for some reason, some packages (Frida) were not installed. So, as a last resort, I tried to move the entire Python folder, but I got an error saying "failed to create process." 이 에.. 2021. 11. 5.
MySQL ERROR 1064 (42000) - 유저 패스워드 변경하기 mysql 5.x에서 사용 가능한 방법 UPDATE mysql.user SET plugin = "mysql_native_password", authentication_string = PASSWORD("PASSWORD") WHERE User = "root"; mysql 8.x에서 사용 가능한 방법 ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'PASSWORD'; 2021. 10. 12.
[백준 알고리즘] 10870번 Python 문제 정보 제출 코드 def fibonacci(n1, n2, count, n): if(count==n): return n1+n2 return fibonacci(n2, n1+n2, count+1, n) n = int(input()) if(n==0): print(0) elif(n==1 or n==2): print(1) else: print(fibonacci(0,1,2,n)) 2021. 10. 4.
[백준 알고리즘] 10872번 Python 문제 정보 제출 코드 def fectorial(n): if(n==1): return 1 else: return n*fectorial(n-1) n = int(input()) if(n==0): print(1) else: print(fectorial(n)) 2021. 10. 4.
[백준 알고리즘] 1002번 Python 문제 정보 제출 코드 # https://yoonsang-it.tistory.com/32 참고 n = int(input()) for i in range(n): x1, y1, r1, x2, y2, r2 = map(int,input().split()) # 피타고라스 정리 distance = ((x2 - x1) ** 2 + (y2 - y1) ** 2) ** 0.5 r_d = [r1,r2,distance] max_v = max(r_d) r_d.remove(max_v) # 접점이 무한히 많은 경우 if(r1==r2 and distance==0): print(-1) # 접점이 0개인 경우 elif(max_v>r_d[0]+r_d[1]): print(0) # 접점이 1개인 경우 elif(r1+r2==distance or.. 2021. 10. 4.
[백준 알고리즘] 3053번 Python 문제 정보 제출 코드 # 유클리드 기하학에서 원의 반지름은 r*r*pi이며, 택시 기하학에서 원의 반지름은 r*r*2이다. import math r = int(input()) print(r*r*math.pi) print(r*r*2) 2021. 10. 4.
[백준 알고리즘] 4153번 Python 문제 정보 제출 코드 # 직삼각형은 가장 큰 길이의 제곱과 나머지 길이의 제곱의 합이 같은 것으로 알 수 있음 while(True): data_list = list(map(int, input().split())) if(data_list[0]==0 and data_list[1]==0 and data_list[2]==0): break x = max(data_list) data_list.remove(x) if(x**2==(data_list[0]**2+data_list[1]**2)): print('right') else: print('wrong') 2021. 10. 4.
[백준 알고리즘] 3009번 Python 문제 정보 제출 코드 x_list = [] y_list = [] for i in range(3): x, y = map(int, input().split()) x_list.append(x) y_list.append(y) for i in range(3): if(x_list.count(x_list[i])==1): x = x_list[i] if(y_list.count(y_list[i])==1): y = y_list[i] print(x,y) 2021. 10. 4.