Skip to content

Commit

Permalink
Merge pull request #2029 from danila12315454/master
Browse files Browse the repository at this point in the history
Added Industrial_developed_hangman
  • Loading branch information
geekcomputers authored Nov 4, 2023
2 parents 68c5011 + c5997d4 commit 6ae406d
Show file tree
Hide file tree
Showing 14 changed files with 1,839 additions and 0 deletions.
200 changes: 200 additions & 0 deletions Industrial_developed_hangman/Data/local_words.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,200 @@
jam
veteran
environmental
sound
make
first-hand
disposition
handy
dance
expression
take
professor
swipe
publisher
tube
thread
paradox
bold
feeling
seal
medicine
ancestor
designer
sustain
define
stomach
minister
coffee
disorder
cow
clash
sector
discount
anger
nationalist
cater
mole
speculate
far
retirement
rub
sample
contribution
distance
palace
holiday
native
debut
steak
tired
pump
mayor
develop
cool
economics
prospect
regular
suntan
husband
praise
rule
soprano
secular
interactive
barrel
permanent
childish
ministry
rank
ball
difficult
linger
comfortable
education
grief
check
user
fish
catch
aquarium
photograph
aisle
justice
preoccupation
liberal
diagram
disturbance
separation
concentration
tidy
appointment
fling
exception
gutter
nature
relieve
illustrate
bathtub
cord
bus
divorce
country
mountain
slump
acquit
inn
achieve
bloodshed
bundle
spell
petty
closed
mud
begin
robot
chorus
prison
lend
bomb
exploration
wrist
fist
agency
example
factory
disagreement
assault
absolute
consider
sign
raw
flood
definition
implication
judge
extraterrestrial
corn
breakfast
shelter
buffet
seize
credit
hardship
growth
velvet
application
cheese
secretion
loop
smile
withdrawal
execute
daughter
quota
deny
defeat
knee
brain
packet
ignorance
core
stumble
glide
reign
huge
position
alive
we
gate
replacement
mourning
incapable
reach
rehearsal
profile
fax
sit
compete
smart
gradient
tough
house
pocket
spider
ditch
critical
ignorant
policy
experience
exhibition
forum
contribution
wrestle
cave
bet
stool
store
formal
basketball
journal
16 changes: 16 additions & 0 deletions Industrial_developed_hangman/Data/text_images.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
╔══╗─╔╗╔╗╔══╗╔═══╗─╔══╗╔╗╔╗╔╗╔╗╔══╗
║╔╗║─║║║║║╔═╝║╔══╝─║╔╗║║║║║║║║║║╔╗║
║╚╝╚╗║║║║║║──║╚══╗─║║║║║║║║║║║║║╚╝║
║╔═╗║║║╔║║║──║╔══╝─║║║║║║╔║║║║║║╔╗║
║╚═╝║║╚╝║║╚═╗║╚══╗╔╝║║║║╚╝║║╚╝║║║║║
╚═══╝╚══╝╚══╝╚═══╝╚═╝╚╝╚══╝╚══╗╚╝╚╝
⡖⠒⢒⣶⠖⠒⠒⠒⡖⠒⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⡇⣠⠟⠁⠀⠀⠀⡖⠓⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⡿⠉⠀⠀⠀⠀⠀⢹⣞⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⡇⠀⠀⠀⠀⠀⣠⠻⡟⢧⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀ ⡇⠀⠀⠀⠀⠐⠃⢨⡧⠀⠳⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀ ⡇⠀⠀⠀⠀⠀⠀⠠⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀ ⡇⠀⠀⠀⠀⠀⠀⢨⣧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀ ⡇⠀⠀⠀⠀⠀⠀⠆⠘⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀ ⡇⠀⠀⠀⠀⠀⠈⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀ ⠧⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤⠤
14 changes: 14 additions & 0 deletions Industrial_developed_hangman/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
lint:
poetry run isort src tests
poetry run flake8 src tests
poetry run mypy src
poetry run mypy tests

test:
poetry run pytest

build:
python src/hangman/main.py
install:
pip install poetry
poetry install
12 changes: 12 additions & 0 deletions Industrial_developed_hangman/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
This is a simple game hangman

to install dependencies got to repository "Industrial_developed_hangman" by `cd .\Industrial_developed_hangman\` and run `make install`

to start it use `make build` command

example of programm run:


![img.png](recorces/img.png)

also makefile have lint command to lint source code
Loading

0 comments on commit 6ae406d

Please sign in to comment.