본문 바로가기

IT To do and To was

22년 11월 17일_알고리즘 문제 풀이 사이트 모음 및 커뮤니티 모음 + 금일 공부한 것

728x90
반응형

목요일[11월 셋째주도 이렇게 가네요]

 

1. CODEUP

2. url

3. 이것이

 

1>

--95번

d = []

for i in range(20)

    d.append([])

    for j in range(20)

        d[i].append(0) // d[[0,0,0,0,0,0,0,0,...],[0,0,0,]

 

n = int(input())

for i in range(n):

    x,y = input().split()

    d[int(x)],[int(y)] = 1

 

for i in range(20):

    for j in range(20):

    print(d[i][j], end= ' ')

print()

 

--- 96번

d=[]
for i in range(20) :
  d.append([])
  for j in range(20) : 
    d[i].append(0)

for i in range(19) :
  a = input().split()
  for j in range(19) :
    d[i+1][j+1] = int(a[j]) // 여기가 이해가 안된다 왜 range(19)이지..? 

n = int(input())
for i in range(n) :
  x,y=input().split()
  x=int(x)
  y=int(y)
  for j in range(1, 20) :
    if d[j][y]==0 :
      d[j][y]=1
    else :
      d[j][y]=0

    if d[x][j]==0 :
      d[x][j]=1
    else :
      d[x][j]=0

for i in range(1, 20) :
  for j in range(1, 20) :
    print(d[i][j], end=' ')
  print()

 

-- 97

 

가로 세로가 주어지는 리스트의 경우 생성 시

 

x,y = map(int, input().split())

 

borad = [[0]*x for _ in range(y)]

 

하면 2차원 배열이 간단하게 생성된다.

 

2>

-- repl

read

eval

print

loop

.. 경로 위로 올라감

함수의 인자값을 매개변수 parameter

실행함수의 인자 argument

define 정의한다는 뜻의 def

 

https://school.programmers.co.kr/learn/courses/2/lessons/179

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

3>

알고리즘 문제 풀이 사이트

코드 시그널 https://app.codesignal.com 

 

CodeSignal

Coding Score Know where your strengths are and where you can improve with overall, subject, and language-specific Coding Scores™.

app.codesignal.com

게임코딩 https://www.codingame.com

 

 

--난이도가 있는 알고리즘 문제 풀이 사이트

 

코드포스 https://codeforces.com 

 

Codeforces

 

codeforces.com

탑코더 https://www.topcoder.com/

 

정올 https://www.jungol.co.kr 

 

JUNGOL

 

www.jungol.co.kr

 

커뮤니티 사이트 

생활코딩 https://opentutorials.org 

 

opentutorials.org

CSS 수업 모듈내 토픽 갯수 19 봤어요 8,726

opentutorials.org

생활코딩 커뮤니티 https://www.facebook.com/groups/174499879257223 

 

로그인 또는 가입하여 보기

Facebook에서 게시물, 사진 등을 확인하세요.

www.facebook.com

백준 온라인 저지 슬랙 https://acmicpc.slack.com 

 

Slack

 

acmicpc.slack.com

// yesterday wished to today list.

. codeup 남은거 풀이_✔️

. 이것이 보기

. 도서관에서 딴짓하지 않기_✔️

. 병원가기_✔️

. 숭실수강신청

. 지망하는 회사 정하기

. https://school.programmers.co.kr/learn/courses/2/lessons/48_✔️

 

tomorrow wish list

. 지망하는 회사 정하기

. 병원가기

. 도서관에서 딴짓하지 않기

. 이것이보기

. SQL 백준 풀어보기

. https://school.programmers.co.kr/learn/courses/2/lessons/179 여기부터 다시 시작

728x90
반응형