Skip to content

Commit

Permalink
Reinforcement Learning _ Rock-paper-scissors
Browse files Browse the repository at this point in the history
  • Loading branch information
yjymosheng committed Dec 13, 2023
0 parents commit d353aab
Show file tree
Hide file tree
Showing 49 changed files with 23,930 additions and 0 deletions.
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .idea/test.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

142 changes: 142 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 3.24)
project(untitled1 C)

set(CMAKE_C_STANDARD 11)
IF(WIN32)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fexec-charset=GBK")
ENDIF()

add_executable(untitled1
main.c lib.c lib.h)

add_executable(file
rand_o_hand.c lib.c lib.h
)
Empty file.
Empty file.
Empty file.
Empty file.
Loading

0 comments on commit d353aab

Please sign in to comment.