d
This commit is contained in:
0
main-2.cpp
Normal file
0
main-2.cpp
Normal file
4
main.py
4
main.py
@@ -3,9 +3,7 @@
|
||||
|
||||
# L4: Function.
|
||||
|
||||
def memory_generateConstPlayfield(
|
||||
n: int
|
||||
) -> dict[int, int]:
|
||||
def memory_generateConstPlayfield(n: int) -> dict[int, int]:
|
||||
idGroups: dict[int, int] = { }
|
||||
id = 0
|
||||
for gid in range(0, n):
|
||||
|
||||
10
pythonToC++
Executable file
10
pythonToC++
Executable file
@@ -0,0 +1,10 @@
|
||||
IN=main.py
|
||||
OUT=main-2.cpp
|
||||
|
||||
# Simple check. TODO REMOVE later
|
||||
sed 's|# L4: Function.|// L4: Function.|' $IN > $OUT
|
||||
|
||||
# dict[X, Y] -> std::map<X, Y>
|
||||
sed -E 's|dict\[(.*), (.*)\]|std::map<\1, \2>|' $IN > $OUT
|
||||
# def functionName(X) -> Y -> Y functionName(X) {
|
||||
sed -E 's|def (.*) -> (.*):|\2 \1 {|' $OUT > $OUT
|
||||
Reference in New Issue
Block a user