목록내일배움캠프 (13)
ballqs 님의 블로그
해당 문제를 풀다가 채점에서 테스트케이스 2개 정도 런타임 에러로 틀렸었다.이유를 알아보니 문제에서는 "SUN","MON","TUE","WED","THU","FRI","SAT" 이렇게 나와 있어서그대로 코드에 적용해서 동작 시켰기 때문이다. 코드import java.time.DayOfWeek;import java.time.LocalDate;class Solution { public String solution(int a, int b) { String answer = ""; // 요일 String yoil[] = {"SUN","MON","TUE","WED","THU","FRI","SAT"}; // 1. LocalDate 생성 LocalDa..
이전 블로그 글 : https://ballqs.tistory.com/2 부트스트랩을 이용한 나만의 앨범 간단 구현참조사이트 : https://getbootstrap.com/docs/5.3/getting-started/introduction/ Get started with BootstrapBootstrap is a powerful, feature-packed frontend toolkit. Build anything—from prototype to production—in minutes.getbootstrap.com CSSflex-direballqs.tistory.com html 소스 수정input tag의 type 변경 및 id 속성값 고유값으로 변경!기록하기에 onclick 속성 추가 ..
참조사이트 : https://getbootstrap.com/docs/5.3/getting-started/introduction/ Get started with BootstrapBootstrap is a powerful, feature-packed frontend toolkit. Build anything—from prototype to production—in minutes.getbootstrap.com CSSflex-direction 속성은 플렉스 컨테이너 내의 아이템을 배치할 때 사용할 주축 및 방향(정방향, 역방향)을 지정합니다./* 한 줄의 글을 작성하는 방향대로 */flex-direction: row;/* 처럼, 대신 역방향 */flex-direction: row-reverse;/* 글 여러 줄..