IT 94

Eclipse에서 github 로그인 하는 법

일단 eclipse에서 github 연결은 했다는 가정하에 진행합니다. eclipse에서 github 연결을 하려고 하면 " can't connect to any repository .... " 이라고 뜨는 경우가 있을 겁니다... 나는 분명 github 아이디랑 비밀번호를 다 입력했는데...왜.....(╬▔皿▔)╯ 이럴 때는 github에서 뭔가를 해줘야하는데.... 이게 안되는 이유는 id/password 방식을 github에서 더이상 지원하지 않아서 생기는....(╯‵□′)╯︵┻━┻ 이 방식 대신에 git에서는 id와 token을 생성해서 연결하도록 바꿨습니다.. token 생성은 github에서

IT/관련지식 2021.09.23

프로그래머스 - 베스트앨범

# JAVA import java.util.HashMap; import java.util.ArrayList; import java.util.Collections; class Music { String genre; int play; int idx; public Music(String genre, int play, int idx) { this.genre = genre; this.play = play; this.idx = idx; } } class Solution { public int[] solution(String[] genres, int[] plays) { // 노래를 수록하는 기준 // 1. 속한 노래가 많이 재생된 장르를 먼저 수록합니다. // 2. 장르 내에서 많이 재생된 노래를 먼저 수록합니다. ..