목록분류 전체보기 (144)
500error
디버깅 해봤더니FAILURE: Build failed with an exception.* What went wrong:Execution failed for task ':flutter_sms:compileReleaseKotlin'.> 'compileReleaseJavaWithJavac' task (current target is 1.8) and 'compileReleaseKotlin' task (current target is 17) jvm target compatibility should be set to the same Java version. Consider using JVM toolchain: https://kotl.in/gradle/jvm/toolchain* Try:> Run with --sta..
이 문제를 처음에 풀때T = int(input())Li = []List = list(map(int, input().split()))T2 = int(input())Lis = list(map(int, input().split()))for i in Lis : Li.append(List.count(i))for j in Li : print(j, end=" ")이렇게 풀었었습니다. 하지만 이렇게 풀었더니 시간초과가 나더라고요 T = int(input())Li = []List = set(map(int,input().split()))T2 = int(input())Lis= list(map(int,input().split()))for i in range(T2): print(1,end=" ") if Lis[..
내가 개발하면서 요청사항이 들어왔다. 리스트로 뽑은 정보들을 가져다가 세부사항을 각 항목을 클릭시 웹뷰로 페이지를 넘어가게 만들라는 것이었다(처음 개발할때 말해주시지) 그래서 웹뷰를 만들어 보았다일단 androidmanifest에 권한 적용을 해주어야 한다.이 코드는 인터넷을 허용해주는 코드이다그리고 androidmanifest에이거도 추가해준다 웹뷰를 적용시킬 버튼에 바인딩 시킨다itemView.setOnClickListener { val context: Context = itemView.context val url = "https://www.naver.com/" // WebViewActivity로 Intent 전송 ..