분류 전체보기 169

[Tensorflow 오류] AttributeError: module 'tensorflow' has no attribute 'placeholder'

https://better-coding.com/solved-attributeerror-module-tensorflow-has-no-attribute-placeholder/ [SOLVED] - AttributeError: module 'tensorflow' has no attribute 'placeholder' The cause of the mentioned problem is incompatibile code with installed tensorflow library. In this case you have code compatible with tensorflow 1.0 version but installed tensorflow 2.0 or higher. Let's see what you can do ..

[Tensorflow 오류] AttributeError: module 'tensorflow' has no attribute 'global_variables_initializer'

https://vispud.blogspot.com/2019/05/tensorflow200a0-attributeerror-module.html Tensorflow==2.0.0a0 - AttributeError: module 'tensorflow' has no attribute 'global_variables_initializer' Download template bootstrap for free ! vispud.blogspot.com import tensorflow as tf model=tf.global_variables_initializer() 이렇게 명령문을 작성하였더니 이런 오류가 발생하였다. 해결방법은 import tensorflow as tf model=tf.compat.v1.global_vari..

[Python] 파이썬 퀴즈게임 소스 (암산, 아재개그) (feat. random lib, for문)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 import random #랜덤함수를 사용하기 위한 라이브러리 import def question1():#아재재그 함수1 print("세상에서 가장 빠른 닭은?") answer=str(input()) if(answer=="후다닭"): #만약 정답이라면 정답이라고 출력 print("정답입니다") else: print("오답입니다") def question2(): print("소금이 깜작 놀라면?") answer=str(input()) #만약 정답이라면 정답이라고 출력 if(answer=="이럴슈가"): print("정답입니다") else: print("오답입니다.") ..

[Python] 학점 계산 프로그램 ( feat. def, if문, 입력함수 input)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 #grade라는 함수 정의, score은 매개변수 def grade(score): if score>=90: grade= "A입니다" #만약 입력한 score이 90이 넘으면 a에 "A입니다"를 대입 elif score>=80: grade= "B입니다" elif score>=70: grade ="C입니다" elif score>=60: grade="D입니다" else : grade="F입니다" return grade #마지막으로 a를 return 해주면 함수 완성 score=int(input()) #오류의 원인! #score값은 함수에서 int형으로 취급이 되고 있으므로 input을 해주고 이를 int형으로 변환! p..

[conda 오류] RemoveError: 'setuptools' is a dependency of conda and cannot be removed fromconda's operating environment.

https://github.com/conda/conda/issues/8903 RemoveError: 'setuptools' is a dependency of conda and cannot be removed from conda's operating environment. · Issue #8903 · c The following packages will be DOWNGRADED: anaconda 2019.03-py37_0 --> custom-py37_1 Proceed ([y]/n)? y Preparing transaction: done Verifying transaction: failed RemoveError: 'setuptools'... github.com setuptools이라는 패키지가 설치되지 않아..

[백준 - 1920] 수 찾기(feat. 이진탐색 알고리즘) / C++

출처 => https://www.acmicpc.net/problem/1920 문제 문제 N개의 정수 A[1], A[2], …, A[N]이 주어져 있을 때, 이 안에 X라는 정수가 존재하는지 알아내는 프로그램을 작성하시오. 입력 첫째 줄에 자연수 N(1≤N≤100,000)이 주어진다. 다음 줄에는 N개의 정수 A[1], A[2], …, A[N]이 주어진다. 다음 줄에는 M(1≤M≤100,000)이 주어진다. 다음 줄에는 M개의 수들이 주어지는데, 이 수들이 A안에 존재하는지 알아내면 된다. 모든 정수의 범위는 -231 보다 크거나 같고 231보다 작다. 출력 M개의 줄에 답을 출력한다. 존재하면 1을, 존재하지 않으면 0을 출력한다. 사고의 흐름 ▶ 선형탐색을 통해 쉽게 구현할 수 있지만 그렇게 하게 되면..

[백준 - 2178] 미로 탐색 (feat. 너비우선탐색) / C++

출처 => https://www.acmicpc.net/problem/2178 문제 N×M크기의 배열로 표현되는 미로가 있다. 1 0 1 1 1 1 1 0 1 0 1 0 1 0 1 0 1 1 1 1 1 0 1 1 미로에서 1은 이동할 수 있는 칸을 나타내고, 0은 이동할 수 없는 칸을 나타낸다. 이러한 미로가 주어졌을 때, (1, 1)에서 출발하여 (N, M)의 위치로 이동할 때 지나야 하는 최소의 칸 수를 구하는 프로그램을 작성하시오. 한 칸에서 다른 칸으로 이동할 때, 서로 인접한 칸으로만 이동할 수 있다. 위의 예에서는 15칸을 지나야 (N, M)의 위치로 이동할 수 있다. 칸을 셀 때에는 시작 위치와 도착 위치도 포함한다. 입력 첫째 줄에 두 정수 N, M(2 ≤ N, M ≤ 100)이 주어진다. ..

[백준 - 2267] 단지번호붙이기 (feat. 깊이우선탐색) / C++

출처 => https://www.acmicpc.net/problem/2667 문제 사고의 흐름 ▶ 전형적인 깊이우선탐색 알고리즘을 이용한 문제이다. ▶ 크게 2가지의 포인트를 잡아야 한다. >> 첫 번째 포인트! 1이 발견되면 그 점을 중심으로 왼쪽 오른쪽 위 아래를 조사하는 것. ▶ 나의 풀이에서는 dx[]와 dy[] 배열을 이용하였다. 주위에 있는 x좌표와 y좌표를 nx와 ny로 설정하고 nx=x+dx[i] ny=y+dy[i]로 선언한다. i가 증가할 때마다 x와 y에 값을 더해준다. ▶ 여기서 중요한 것은 아래의 소스코드처럼 i번째의 숫자는 dx[i]와 dy[i]가 달라야 한다. 만약 0으로 같거나 1,-1로 둘이 같게 된다면 이동하지 않거나 대각선으로 이동하기 때문이다. dfs에서의 움직이는 방향..