[자바JAVA]172. Factorial Trailing Zeroes
문제 172. Factorial Trailing Zeroes
주어진 int n을 팩토리얼로 나타내어 Trailing Zeroes를 구하는 문제이다.
Given an integer n, return the number of trailing zeroes in n!.
주어진 int n을 팩토리얼로 나타내어 Trailing Zeroes를 구하는 문제이다.
Given an integer n, return the number of trailing zeroes in n!.
슬라이드배너기능을 구현하기위해 슬릭 라이브러리를 사용했다.
slick slider는 jQuery 기반으로 만들어진 라이브러리이다. 따라서 jQuery가 필요하다.
슬라이더 라이브러리는 다양하지만 슬릭 슬라이더 라이브러리의 홈페이지가 가장 친절하다.
주어진 array안에 쌍이 아닌 홀로 있는 숫자를 찾는 문제이다.
Given a non-empty array of integers nums, every element appears twice except for one. Find that single one.
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.
Note: For the purpose of this problem, we define empty string as valid palindrome.
이클립스에서 톰캣 서버를 실행하던 중 80 port가 already in use라는 에러가 발생했다.
차분히 cmd를 열고 taskkill했는데 오류 : 프로세스(PID 4)를 종료할 수 없습니다. 원인: 액세스가 거부되었습니다
가 출력되었다.
관리자권한으로 다시 실행하여 taskkill했지만 여전히 동일하 오류 메세지가 출력되었다.
두 가지 방법이 있다.
쿼리 마지막라인에 --주석문
을 사용하면 그 뒤의 내부적으로 추가되는 sql구문에 주석이 인식되어질 수 있어 에러가 발생할 수 있다.
따라서 --주석문
보다 /* 주석문 */
을 사용하는 습관을 들이는 것이 좋다.