This commit is contained in:
Михаил Капелько
2024-03-29 23:23:50 +03:00
parent 9a17647cc2
commit 110b44030d
7 changed files with 11 additions and 3 deletions

0
main-2.cpp Normal file
View File

View File

@@ -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
View 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