본문 바로가기 메뉴 바로가기

Now or Never

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

Now or Never

검색하기 폼
  • 분류 전체보기 (292)
    • Java (43)
      • Java 올인원 패키지 (32)
      • Java Basic (7)
      • Java Design Pattern (1)
      • JDBC (2)
      • Java OOP (1)
    • Information (1)
    • 컴퓨터 공학(CS) (19)
      • 데이터베이스 (6)
      • 시스템 분석 및 설계 (2)
      • 운영체제 (7)
      • 네트워크 기본 정보 (4)
    • Study (49)
      • DataStructure (11)
      • TIL in Japanese (Today I Le.. (27)
      • TIL in English (Today I Lea.. (2)
      • TIL (Today I Learned) (9)
    • JSP (27)
      • 인프런 JSP (23)
      • MVC1 게시판 만들기 (4)
    • CSS (2)
      • 생활코딩 - CSS (2)
    • javaScript (8)
      • 생활코딩 - JavaScript (4)
      • Udemy - WebBootcamp (1)
      • javaScript (3)
    • DataBase (13)
      • 생활코딩 - MySQL (1)
      • 오라클 SQL (10)
      • SQL 용어 (2)
    • Spring (17)
      • 인프런 - Spring (4)
      • SpringBoot & AWS (5)
      • 패캠 - Spring (1)
      • Maven (6)
      • Spring lecture (1)
    • Algorithm (65)
      • Algorithm Practice (21)
      • Codility (6)
      • 백준 (30)
      • SWEA (2)
      • 프로그래머스 (5)
    • HTML (2)
      • 클래스라이언 웹기초 (0)
      • HTML 용어 개념 (2)
    • 리눅스 (8)
      • 리눅스 기초 (1)
      • 생활코딩 리눅스 (0)
      • Ubuntu on Windows 10 (7)
    • 생각정리 (6)
    • 토막지식시리즈 (29)
      • GraphQL 토막지식 (3)
      • javascript 토막지식 (12)
      • React 토막지식 (7)
      • DB 토막지식 (1)
      • Rxjs 토막지식 (0)
      • 삽질기록 (4)
  • 방명록

분류 전체보기 (292)
Codility -3 OddOccurrencesInArray(Java)

( https://app.codility.com/programmers/lessons/2-arrays/odd_occurrences_in_array/ ) 문제링크. If문으로 풀다가, 시간복잡도 측면에서도 그렇고, 이렇게 풀면 안될 것같았음. 따라서 다른사람의 풀이를 분석. - XOR연산풀이. public class OddOccurrencesInArray { public static void main(String[] args) { int[] arr = {9, 4, 9, 4, 7, 9, 9, 4, 4}; System.out.println(solution(arr)); } public static int solution(int[] A) { int answer = 0; for(int num : A) { answer..

Algorithm/Codility 2020. 3. 4. 17:50
Codility -2 CyclicRotation(Java)

Rotate an array to the right by a given number of steps. 내 코드 - 정상작동하지만 solution([], 1)에는 error를 발생시킴. - 따라서 배열의 길이가 0일때는 while문에 들어가지 않고 바로 return하는 if조건문을 초반에 삽입해야 함. - 이 코드의 문제는, 배열의 길이만큼 rotate할 때, 0번 한것과 같음에도 불구하고, 5번을 실행하기 때문에 프로그램이 길어진다는 것. class Solution { public int[] solution(int[] A, int K) { if (A.length == 0) { //solution([], 1) 일 경우 대비하기 return A; } while (K > 0) { int sto = A[0]; ..

Algorithm/Codility 2020. 3. 4. 16:40
20200303_TIL

何をしたか ・(プログラミング)MVC_BORADプロジェクトORACLE DBと連動完了。 ・(プログラミング)fast-campus, restaurant reservation site講座 3回まで見る。 ・(プログラミング)INFLEARN Spring 1回見る。 ・(プログラミング)Codility - Binarygab解ける ・(資格証)基礎情報技術者データベース既出問題解く。 ・(プログラミング)Nomad-coder kakaoclone, 1.2 Status Bar どう思うか ・基本情報処理技術者D-19 もっと集中しましょう!。 次どうするか ・GITHUB整理。MVC、具現した機能記録、実施写真載せる。 ・Codility - Ninarygab Best Answel復習及び分析。

Study/TIL in Japanese (Today I Learned) 2020. 3. 4. 00:58
Codility -1 Binary gap(Java)

( https://app.codility.com/programmers/lessons/1-iterations/binary_gap/ ) 10진수 N의 2진수를 확인하여, 양끝이 1로시작하고 1로 끝나는 binary gap사이에 있는 0의 갯수 구하기. A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones at both ends in the binary representation of N. 내 코드 class Solution { public static int solution(int N) { int result = 0; int biCut = 0; String bi..

Algorithm/Codility 2020. 3. 3. 21:16
이전 1 ··· 46 47 48 49 50 51 52 ··· 73 다음
이전 다음
최근에 올라온 글
최근에 달린 댓글
TAG
  • chapter8
  • 백준
  • 20200510
  • 20200319
  • 생활코딩리눅스
  • 20200421
  • 20200330
  • 20200804
  • 20200317
  • likelion
  • 20200428
  • 20200504
  • 20200420
  • chapter7
  • 20200406
  • 20200413
  • 20200512
  • 20200423
  • 20200503
  • 20200417
  • 20200429
  • 20200424
  • 20200427
  • 20200502
  • 20201204
  • 20200622
  • 20200403
  • 20200415
  • 20200425
  • 20200624
more
Total
Today
Yesterday

Blog is powered by Tistory / Designed by Tistory

티스토리툴바