[내일배움단 ai트랙 3기] TIL 220921

2022. 9. 22. 00:19스파르타코딩클럽[AI트랙 3기]/TIL

22.09.21

어제 좀 잘되나 했더니.. 오늘은 영.. 오전에 빠짝집중하고 오후엔 느슨.. 장고를 낼부터 시작하는데 진짜 중요할거다. 따라갈 수 있을까? 내일은 진짜 매니저님들하고 상담하면서 내길을 찾아야겠다...그리고 뻘짓하지말고 그냥 일찍자고 일찍 일어나야지.. 블로그쓸때는 쓰는거고 아닐땐 아니다. 인스타좀 그만하자;;;


ㅁ자료구조와 알고리즘

https://pocachips.tistory.com/62

 

[자료구조와 알고리즘] #5

3-1 오늘배울 것 스택, 큐의 개념과 활용법 해쉬의 개념과 활용법 트리, 힙의 개념과 활용법 정렬: 데이터를 순서대로 나열하는 방법 스택과 큐: 들어가고 나오는곳이 정해져있는 자료 스택은 맨

pocachips.tistory.com

ㅁ백준문제 4단계

https://pocachips.tistory.com/28?category=1067006 

 

[백준문제풀이/파이썬] 4단계_1차원배열

ㅇ10818 >오답 n = int(input()) print(min(n),“”,max(n)) -정답(구글링) N = int(input()) numbers = list(map(int,input().split())) print(min(numbers),max(numbers)) +)여기서는 list의 변수도 정해줬음...

pocachips.tistory.com

ㅁ파이썬 거북이반

https://pocachips.tistory.com/61?category=1069944 

 

[파이썬 거북이반] #4 class심화

==1교시== 1.특수메소드는 __가 포함됨. 메소드에 return값 없으면 함수 실행하고 프린트해도 none이 나옴.(프린트없이 함수만 실행하면 아무일도 안일어남.) print(myCar.speed) mtCar.drive() print(myCar.speed..

pocachips.tistory.com

ㅁ파이썬 원격강의 과제

https://pocachips.tistory.com/45?category=1067542 

 

[파이썬 원격 강의 과제]220914 #4 파이썬 심화 문법 사용해보기

>내가짠 코드 class Calc(): def set_number(self, a, b): self.a = a self.b = b def plus(self): result = self.a + self.b return result def minus(self): result = self.a - self.b return result def multi..

pocachips.tistory.com

 

https://pocachips.tistory.com/46?category=1067542 

 

[파이썬 원격 강의 과제]220915 #5 조건문, 반복문

>내코드 def get_grade(score): if score >90 : print("A") elif score >80 : print("B") elif score >70 : print("C") else: print("F") score=int(input()) grade = get_grade(score) print(grade) #A~F ▶성적..

pocachips.tistory.com

ㅁ왕초보파이썬

https://pocachips.tistory.com/60

 

2.1.3 연습 문제: 얌체공

round()는 다음과 같이 반올림을 해주는 함수입니다. >>> round(1.23456, 2) # 1.23456을 소수점 둘째 자리로(셋째 자리에서) 반올림 1.23 >>> round(1.23456, 3) # 1.23456을 소수점 셋째 자리로(넷째 자리에서)..

pocachips.tistory.com