분류 전체보기
Google SWE Online Coding Challenge Internship 2021
GOCC15: Google SWE Online Coding Challenge Internship 2021 - GeeksforGeeks A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions. www.geeksforgeeks.org ✔️ Second Question: Divisibility Count Find the number of N digit integers divisible by b..
Google SWE Online Coding Challenge Internship 2021
✔️ First Question: The maximum XOR value Given an array of N Integers. You are given q queries. Each query has 2 integers x and m. For each query, you are required to determine the array value that provides the maximum bitwise XOR value with x where the array value is not more than m. If there is no such value that satisfies then condition, then print -1. Input Format A first line is a number of..
Google online challenge 2020 for summer internships
✔️ Second Question: Given a list which initially contains 0, the following queries can be performed: 0 X: add X to the list 1 X: replace each element “A” of the list by A^X, where ^ is the xor operator Return a list with the result elements in increasing order. 문제 링크 Google Online Challenge 2020 - GeeksforGeeks A Computer Science portal for geeks. It contains well written, well thought and well ..
Google online challenge 2020 for summer internships 2021
✔️ First Question: Size of the smallest subset with maximum Bitwise OR Google Online Challenge 2020 - GeeksforGeeks A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions. www.geeksforgeeks.org 🎈 Question 양의 정수로 이루어진 배열이 있을 때, 비트 OR 연산의 합이 최대..
No JVM shared library file (libjvm.so) found. Try setting up the JAVA_HOME environment variable properly 오류 해결
Django로 개발한 프로젝트를 배포하고 웹사이트에서 POST 메서드를 사용할 때 No JVM shared library file (libjvm.so) found. Try setting up the JAVA_HOME environment variable properly 위와 같은 에러가 뜨는 경우가 있다. konlpy 라이브러리와 관련해서 발생하는 문제인데 여러 원인이 있지만 가장 먼저 java가 설치되어있는지 확인하자! 나의 경우 java가 설치되어있지 않아 해당 오류가 떴고, ubuntu 환경이라면 $ sudo apt install default-jdk 위의 명령어를 통해 java를 바로 설치할 수 있다. 그리고 다시 웹사이트에 접속하면 POST 메소드가 정상적으로 작동한다!
티스토리에 아이콘 삽입하기(Github, LinkedIn)
Font Awesome The world’s most popular and easiest to use icon set just got an upgrade. More icons. More styles. More Options. fontawesome.com 티스토리에 SNS나 기타 아이콘을 삽입하고자 하는 경우 Font Awesome 사이트를 사용하면 된다. 사용 방법 1. 사이트에 접속해서 아이콘 찾기 나는 github, linkedin 아이콘만 필요했는데 이외에도 instagram, facebook 등의 소셜 아이콘이 있고 기타 무료 아이콘도 많으니 맘에 드는 걸로 하나 선택한다. 2. 블로그 환경설정(관리자 페이지) → 스킨 편집 클릭 3. html 편집 클릭 4. 사파리, 크롬 등에서 개발자 도구를 ..
[11725] 트리의 부모 찾기(C++)
문제 [11725] 트리의 부모 찾기 해결 방법 이 문제도 전형적인 dfs, bfs 문제이다. 한 가지, 현재 노드의 부모 노드가 몇번인지 저장할 배열만 추가하면 된다. 나는 인접리스를 활용한 dfs로 구현하였는데, 인접한 노드를 모두 입력받은 후 리스트의 형태는 아래와 같다. 노드 1 6 4 2 4 3 6 5 4 1 2 7 5 3 6 1 3 7 4 1번 노드부터 탐색을 시작하는데, 1번 노드와 연결된 노드는 무조건 1번 노드의 자식임을 알아두자. 또한, 나와 연결된 노드는 나의 부모이거나 자식이거나 둘중 하나임을 기억하자. 탐색을 하면서 나와 연결되어있지만 이미 방문한 노드는 부모노드이고, 그렇지 않은 노드는 부모 노드가 아니기에 자식노드로 판단하고 부모로 저장해주면 된다! 내 코드(C++) // [1..
[프로그래머스] 모의고사
코딩테스트 연습 - 모의고사 수포자는 수학을 포기한 사람의 준말입니다. 수포자 삼인방은 모의고사에 수학 문제를 전부 찍으려 합니다. 수포자는 1번 문제부터 마지막 문제까지 다음과 같이 찍습니다. 1번 수포자가 찍는 programmers.co.kr 문제 풀이 수포자 각각이 찍는 방식의 주기를 파악하면 된다. 수포자1의 주기는 5, 수포자2의 주기는 8, 수포자3의 주기는 10이고 입력 받은 모든 정답을 처음부터 탐색하면서 수포자 각각의 답안과 비교하면 된다. 코드(C++) #include #include #include // max using namespace std; int person1[5] = {1, 2, 3, 4, 5}; int person2[8] = {2, 1, 2, 3, 2, 4, 2, 5}; ..